summaryrefslogtreecommitdiff
path: root/include/engine/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/engine/logging.h')
-rw-r--r--include/engine/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/engine/logging.h b/include/engine/logging.h
index 0ac5025..8d5ef31 100644
--- a/include/engine/logging.h
+++ b/include/engine/logging.h
@@ -34,7 +34,7 @@ void LOG(const char *fmt, ...);
void INFO_(const char *fmt, ...);
void INFO(const char *fmt, ...);
-#ifdef DAW_BUILD_DEBUG
+#ifdef _DEBUG
#define DEBUG(fmt, ...) __DEBUG(__FILE__,__LINE__, __func__, fmt, __VA_ARGS__)
void __DEBUG(const char* file, const i32 line, const char* func, const char *fmt, ...);
#else