From 4abb242204e117edfec86a24bbecc689ace6a9a7 Mon Sep 17 00:00:00 2001 From: 0scar Date: Tue, 15 Aug 2023 09:09:14 +0200 Subject: Update the _DEBUG macro test to something more standard --- include/engine/logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/engine') 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 -- cgit v1.3