GBA Hardware: Use localtime_s on Win32 and PSP2

This commit is contained in:
Jeffrey Pfau 2015-07-08 19:28:28 -07:00
parent d60e4972e9
commit 305e8c009c
1 changed files with 2 additions and 10 deletions

View File

@ -8,10 +8,6 @@
#include "gba/serialize.h"
#include "util/hash.h"
#ifdef PSP2
#include <psp2/rtc.h>
#endif
static void _readPins(struct GBACartridgeHardware* hw);
static void _outputPins(struct GBACartridgeHardware* hw, unsigned pins);
@ -260,12 +256,8 @@ void _rtcUpdateClock(struct GBACartridgeHardware* hw) {
t = time(0);
}
struct tm date;
#ifdef _WIN32
date = *localtime(&t);
#elif defined(PSP2)
SceRtcTime scertc;
sceRtcGetCurrentClockLocalTime(&scertc);
sceRtcGetTime_t(&scertc, &t);
#if defined(_WIN32) || defined(PSP2)
localtime_s(&date, &t);
#else
localtime_r(&t, &date);
#endif