summaryrefslogtreecommitdiff
path: root/Editor/Utils
diff options
context:
space:
mode:
Diffstat (limited to 'Editor/Utils')
-rw-r--r--Editor/Utils/HelperFuncs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Editor/Utils/HelperFuncs.h b/Editor/Utils/HelperFuncs.h
index 626e48f..def1e23 100644
--- a/Editor/Utils/HelperFuncs.h
+++ b/Editor/Utils/HelperFuncs.h
@@ -9,3 +9,7 @@ extern void PrintCallStack();
#define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
#define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
+
+#ifndef Assert
+#define Assert assert
+#endif