summaryrefslogtreecommitdiffstats
path: root/src/common/platform.h
diff options
context:
space:
mode:
authordarkf <lw9k123@gmail.com>2014-12-30 04:59:14 +0100
committerdarkf <lw9k123@gmail.com>2014-12-30 05:12:03 +0100
commit5d10b212ecebb15fb1463edc08c725d8e29fa44a (patch)
tree206a1417e59815789eca81249734b0eb5497d5e3 /src/common/platform.h
parentFix merge conflicts (diff)
downloadyuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar.gz
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar.bz2
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar.lz
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar.xz
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.tar.zst
yuzu-5d10b212ecebb15fb1463edc08c725d8e29fa44a.zip
Diffstat (limited to 'src/common/platform.h')
-rw-r--r--src/common/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/platform.h b/src/common/platform.h
index ce5550520..ce9cfd4a2 100644
--- a/src/common/platform.h
+++ b/src/common/platform.h
@@ -76,7 +76,7 @@
#endif
#define EMU_FASTCALL __fastcall
-#ifdef _MSVC_VER
+#ifdef _MSC_VER
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
if (localtime_s(result, clock) == 0)
return result;