diff --git a/Dalamud.Boot/dllmain.cpp b/Dalamud.Boot/dllmain.cpp index 4fbfe07f4..e13b61ca0 100644 --- a/Dalamud.Boot/dllmain.cpp +++ b/Dalamud.Boot/dllmain.cpp @@ -10,7 +10,7 @@ HMODULE g_hModule; DllExport DWORD WINAPI Initialize(LPVOID lpParam) { - #if defined(NDEBUG) + #if !defined(NDEBUG) ConsoleSetup(L"Dalamud Boot"); #endif @@ -44,7 +44,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam) // =========================================================================== // - #if defined(NDEBUG) + #if !defined(NDEBUG) FreeConsole(); #endif diff --git a/Dalamud/DalamudStartInfo.cs b/Dalamud/DalamudStartInfo.cs index df22b8824..5c82cf63c 100644 --- a/Dalamud/DalamudStartInfo.cs +++ b/Dalamud/DalamudStartInfo.cs @@ -12,7 +12,7 @@ namespace Dalamud public record DalamudStartInfo { /// - /// Gets the working directory of the XIVLauncher installations. + /// Gets or sets the working directory of the XIVLauncher installations. /// public string WorkingDirectory { get; set; }