summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-03-16 02:22:19 +0100
committerGravatar Emmanuel Gil Peyrot2015-03-16 02:22:19 +0100
commit4c684fb274ddf6396b5d5e4c18e3120c7d8fe31e (patch)
treed3eebaf616f091bc51cc1dafd74fc0310dd4c5bc /src
parentMerge pull request #657 from Subv/flip (diff)
downloadyuzu-4c684fb274ddf6396b5d5e4c18e3120c7d8fe31e.tar.gz
yuzu-4c684fb274ddf6396b5d5e4c18e3120c7d8fe31e.tar.xz
yuzu-4c684fb274ddf6396b5d5e4c18e3120c7d8fe31e.zip
Common: Make a #else more apparent.
Diffstat (limited to 'src')
-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 ba1109c9f..e27d6e31f 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) {
83} 83}
84#endif 84#endif
85 85
86#else 86#else // EMU_PLATFORM != PLATFORM_WINDOWS
87 87
88#define EMU_FASTCALL __attribute__((fastcall)) 88#define EMU_FASTCALL __attribute__((fastcall))
89#define __stdcall 89#define __stdcall
@@ -92,10 +92,6 @@ inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
92#define BOOL bool 92#define BOOL bool
93#define DWORD u32 93#define DWORD u32
94 94
95#endif
96
97#if EMU_PLATFORM != PLATFORM_WINDOWS
98
99// TODO: Hacks.. 95// TODO: Hacks..
100#include <limits.h> 96#include <limits.h>
101 97