Output debug string in debug mode

This commit is contained in:
momo5502 2022-10-17 20:10:18 +02:00
parent cc417253b0
commit 1f7397b2f3

View File

@ -24,6 +24,9 @@ namespace console
{ {
if (started && !terminate_runner) if (started && !terminate_runner)
{ {
#ifndef NDEBUG
OutputDebugStringA(message);
#endif
game::Com_Printf(0, 0, "%s", message); game::Com_Printf(0, 0, "%s", message);
} }
} }