mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: #ifndef instead of !defined()
This commit is contained in:
parent
c974a05178
commit
bce65db082
2 changed files with 4 additions and 4 deletions
|
|
@ -10,7 +10,7 @@ HMODULE g_hModule;
|
|||
|
||||
DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
||||
{
|
||||
#if !defined(NDEBUG)
|
||||
#ifndef NDEBUG
|
||||
ConsoleSetup(L"Dalamud Boot");
|
||||
#endif
|
||||
|
||||
|
|
@ -46,7 +46,7 @@ DllExport DWORD WINAPI Initialize(LPVOID lpParam)
|
|||
|
||||
// =========================================================================== //
|
||||
|
||||
#if !defined(NDEBUG)
|
||||
#ifndef NDEBUG
|
||||
FreeConsole();
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue