aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/platform.h
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-03-16 02:22:19 +0100
committerGravatar Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-03-16 02:22:19 +0100
commit4c684fb274ddf6396b5d5e4c18e3120c7d8fe31e (patch)
treed3eebaf616f091bc51cc1dafd74fc0310dd4c5bc /src/common/platform.h
parent3e5aeb9a7abb74fb5492f8f93265c03f45c1757a (diff)
Common: Make a #else more apparent.
Diffstat (limited to 'src/common/platform.h')
-rw-r--r--src/common/platform.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/common/platform.h b/src/common/platform.h
index ba1109c9..e27d6e31 100644
--- a/src/common/platform.h
+++ b/src/common/platform.h
@@ -83,7 +83,7 @@ inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
}
#endif
-#else
+#else // EMU_PLATFORM != PLATFORM_WINDOWS
#define EMU_FASTCALL __attribute__((fastcall))
#define __stdcall
@@ -92,10 +92,6 @@ inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
#define BOOL bool
#define DWORD u32
-#endif
-
-#if EMU_PLATFORM != PLATFORM_WINDOWS
-
// TODO: Hacks..
#include <limits.h>