feat(Core/Misc): replace all prefix preprocessor defines from CompilerDefs with AC_ (#2419)

This commit is contained in:
Kargatum
2019-11-15 23:27:31 +07:00
committed by GitHub
parent f9a8de9be7
commit a3206c56dc
12 changed files with 48 additions and 51 deletions

View File

@@ -21,13 +21,13 @@ char const* GitRevision::GetBranch()
return _BRANCH;
}
#if PLATFORM == PLATFORM_WINDOWS
#if AC_PLATFORM == AC_PLATFORM_WINDOWS
# ifdef _WIN64
# define AZEROTH_PLATFORM_STR "Win64"
# else
# define AZEROTH_PLATFORM_STR "Win32"
# endif
#else // PLATFORM
#else // AC_PLATFORM
# define AZEROTH_PLATFORM_STR "Unix"
#endif