summaryrefslogtreecommitdiff
path: root/src/common/Debugging/Errors.cpp
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2019-11-15 23:27:31 +0700
committerGitHub <noreply@github.com>2019-11-15 23:27:31 +0700
commita3206c56dc7b2e7421d2dfaee56bad0a195d6c58 (patch)
tree82d54f7979f060f15d3984b250f30a14952af9b7 /src/common/Debugging/Errors.cpp
parentf9a8de9be7678acb6b55d8fc573ba960d11c569c (diff)
feat(Core/Misc): replace all prefix preprocessor defines from CompilerDefs with AC_ (#2419)
Diffstat (limited to 'src/common/Debugging/Errors.cpp')
-rw-r--r--src/common/Debugging/Errors.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Debugging/Errors.cpp b/src/common/Debugging/Errors.cpp
index 4c97ceb675..c7e78b8385 100644
--- a/src/common/Debugging/Errors.cpp
+++ b/src/common/Debugging/Errors.cpp
@@ -22,7 +22,7 @@
terminates the application.
*/
-#if PLATFORM == PLATFORM_WINDOWS
+#if AC_PLATFORM == AC_PLATFORM_WINDOWS
#include <Windows.h>
#define Crash(message) \
ULONG_PTR execeptionArgs[] = { reinterpret_cast<ULONG_PTR>(strdup(message)), reinterpret_cast<ULONG_PTR>(_ReturnAddress()) }; \