From 90cfd090d6fc03f2cf63632bbd5d5deb9c2e5e56 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 4 Oct 2021 00:08:39 -0700 Subject: Fix inverted macro check --- core/logging.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/logging.cpp') diff --git a/core/logging.cpp b/core/logging.cpp index 78956791..91cb0e8c 100644 --- a/core/logging.cpp +++ b/core/logging.cpp @@ -45,7 +45,7 @@ void al_print(LogLevel level, FILE *logfile, const char *fmt, ...) * informational, warning, or error debug messages. So only print them for * non-Release builds. */ -#ifdef NDEBUG +#ifndef NDEBUG OutputDebugStringW(wstr.c_str()); #endif } -- cgit v1.2.3