mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
sceRtcGetCurrentTick's first and only parameter is uint64_t *
This commit is contained in:
parent
29d5fc67a2
commit
fea033268a
@ -154,14 +154,7 @@ retro_perf_tick_t cpu_features_get_perf_counter(void)
|
||||
#elif defined(GEKKO)
|
||||
time_ticks = gettime();
|
||||
#elif defined(PSP) || defined(VITA)
|
||||
{
|
||||
#if defined(PSP)
|
||||
u64 *ticks = (u64*)&time_ticks;
|
||||
#elif defined(VITA)
|
||||
SceRtcTick *ticks = (SceRtcTick*)&time_ticks;
|
||||
#endif
|
||||
sceRtcGetCurrentTick(ticks);
|
||||
}
|
||||
sceRtcGetCurrentTick((uint64_t*)&time_ticks);
|
||||
#elif defined(_3DS)
|
||||
time_ticks = svcGetSystemTick();
|
||||
#elif defined(__mips__)
|
||||
|
Loading…
x
Reference in New Issue
Block a user