mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix console window showing up.
This commit is contained in:
parent
7419d74edf
commit
495a0741fc
2 changed files with 3 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ HMODULE g_hModule;
|
||||||
|
|
||||||
DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
||||||
{
|
{
|
||||||
#if defined(NDEBUG)
|
#if !defined(NDEBUG)
|
||||||
ConsoleSetup(L"Dalamud Boot");
|
ConsoleSetup(L"Dalamud Boot");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
@ -44,7 +44,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
||||||
|
|
||||||
// =========================================================================== //
|
// =========================================================================== //
|
||||||
|
|
||||||
#if defined(NDEBUG)
|
#if !defined(NDEBUG)
|
||||||
FreeConsole();
|
FreeConsole();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ namespace Dalamud
|
||||||
public record DalamudStartInfo
|
public record DalamudStartInfo
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the working directory of the XIVLauncher installations.
|
/// Gets or sets the working directory of the XIVLauncher installations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string WorkingDirectory { get; set; }
|
public string WorkingDirectory { get; set; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue