Fix MSVC-related #defines and add CMakeLists comment

This commit is contained in:
darkf 2014-12-29 19:59:14 -08:00
parent 8ba9ac0f74
commit 5d10b212ec
6 changed files with 11 additions and 11 deletions

View file

@ -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;