summaryrefslogtreecommitdiff
path: root/include/engine
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2023-08-15 07:09:14 +0000
committer0scar <qgt268@alumni.ku.dk>2023-08-15 07:09:14 +0000
commit4abb242204e117edfec86a24bbecc689ace6a9a7 (patch)
tree3832a60388f8a5b7ad54c402a1e30d06646a9942 /include/engine
parentb1d81e1b1fd59519119dc3e77333d51b0d5b2458 (diff)
Update the _DEBUG macro test to something more standard
Diffstat (limited to 'include/engine')
-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