diff --git a/Core/HLE/sceRtc.cpp b/Core/HLE/sceRtc.cpp index 7d1d899025..bc19e9ab97 100644 --- a/Core/HLE/sceRtc.cpp +++ b/Core/HLE/sceRtc.cpp @@ -368,7 +368,7 @@ int sceRtcConvertLocalTimeToUTC(u32 tickLocalPtr,u32 tickUTCPtr) { u64 srcTick = Memory::Read_U64(tickLocalPtr); // TODO : Let the user select his timezone / daylight saving instead of taking system param ? -#ifdef __GLIBC__ +#if defined(__GLIBC__) || defined(__SYMBIAN32__) time_t timezone = 0; tm *time = localtime(&timezone); srcTick -= time->tm_gmtoff*1000000ULL; @@ -391,7 +391,7 @@ int sceRtcConvertUtcToLocalTime(u32 tickUTCPtr,u32 tickLocalPtr) { u64 srcTick = Memory::Read_U64(tickUTCPtr); // TODO : Let the user select his timezone / daylight saving instead of taking system param ? -#ifdef __GLIBC__ +#if defined(__GLIBC__) || defined(__SYMBIAN32__) time_t timezone = 0; tm *time = localtime(&timezone); srcTick += time->tm_gmtoff*1000000ULL; diff --git a/Qt/Core.pro b/Qt/Core.pro index cf96fac6ea..614698b3c5 100755 --- a/Qt/Core.pro +++ b/Qt/Core.pro @@ -23,7 +23,7 @@ arm { HEADERS += ../Core/MIPS/ARM/ArmAsm.h \ ../Core/MIPS/ARM/ArmJit.h \ ../Core/MIPS/ARM/ArmJitCache.h \ - ../Core/MIPS/ARM/ArmRegCache.h + ../Core/MIPS/ARM/ArmRegCache.h \ ../Core/MIPS/ARM/ArmRegCacheFPU.h } x86 {