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