Fix console window showing up.

This commit is contained in:
Raymond 2021-08-21 14:52:35 -04:00
parent 7419d74edf
commit 495a0741fc
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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; }