diff options
| author | Martin Ridgers <[email protected]> | 2021-11-30 16:23:38 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-12-02 11:35:46 +0100 |
| commit | 93c181ef5174211994533f79c82f1661df70e6e2 (patch) | |
| tree | a4bcdf86893607661c0fe0c2485cd93a8d9f51c3 /zencore/include | |
| parent | ZEN_CONSOLE() without and VA_ARGS wouldn't compile with GCC (diff) | |
| download | zen-93c181ef5174211994533f79c82f1661df70e6e2.tar.xz zen-93c181ef5174211994533f79c82f1661df70e6e2.zip | |
Renamed ZEN_PLATFORM_MACOS to ZEN_PLATFORM_MAC
None of the other platform defines have an "OS" suffix so removing this
one keeps things consistent and lowers the chance of error.
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/trace.h | 2 | ||||
| -rw-r--r-- | zencore/include/zencore/zencore.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/zencore/include/zencore/trace.h b/zencore/include/zencore/trace.h index 0bcb6e285..3489c189a 100644 --- a/zencore/include/zencore/trace.h +++ b/zencore/include/zencore/trace.h @@ -8,7 +8,7 @@ #define IS_MONOLITHIC 1 #define PLATFORM_WINDOWS ZEN_PLATFORM_WINDOWS #define PLATFORM_UNIX ZEN_PLATFORM_LINUX -#define PLATFORM_APPLE ZEN_PLATFORM_MACOS +#define PLATFORM_APPLE ZEN_PLATFORM_MAC #define PLATFORM_ANDROID 0 #define PLATFORM_HOLOLENS 0 #define UE_BUILD_TEST 0 diff --git a/zencore/include/zencore/zencore.h b/zencore/include/zencore/zencore.h index 65b770310..bb1d4a16c 100644 --- a/zencore/include/zencore/zencore.h +++ b/zencore/include/zencore/zencore.h @@ -16,7 +16,7 @@ #define ZEN_PLATFORM_WINDOWS 0 #define ZEN_PLATFORM_LINUX 0 -#define ZEN_PLATFORM_MACOS 0 +#define ZEN_PLATFORM_MAC 0 #ifdef _WIN32 # undef ZEN_PLATFORM_WINDOWS @@ -25,8 +25,8 @@ # undef ZEN_PLATFORM_LINUX # define ZEN_PLATFORM_LINUX 1 #elif defined(__APPLE__) -# undef ZEN_PLATFORM_MACOS -# define ZEN_PLATFORM_MACOS 1 +# undef ZEN_PLATFORM_MAC +# define ZEN_PLATFORM_MAC 1 #endif #if ZEN_PLATFORM_WINDOWS |