Merge pull request #487 from daemitus/ConsoleWindow

This commit is contained in:
goaaats 2021-08-21 21:20:54 +02:00 committed by GitHub
commit b05d362353
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -12,7 +12,7 @@ namespace Dalamud
public record DalamudStartInfo
{
/// <summary>
/// Gets the working directory of the XIVLauncher installations.
/// Gets or sets the working directory of the XIVLauncher installations.
/// </summary>
public string WorkingDirectory { get; set; }