(3DS) use cpu ticks for the performance counter.
This commit is contained in:
parent
a7c63f973b
commit
effaf20608
|
@ -196,7 +196,7 @@ retro_perf_tick_t rarch_get_perf_counter(void)
|
||||||
#elif defined(PSP)
|
#elif defined(PSP)
|
||||||
sceRtcGetCurrentTick(&time_ticks);
|
sceRtcGetCurrentTick(&time_ticks);
|
||||||
#elif defined(_3DS)
|
#elif defined(_3DS)
|
||||||
time_ticks = osGetTime();
|
time_ticks = svcGetSystemTick();
|
||||||
#elif defined(__mips__)
|
#elif defined(__mips__)
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv,NULL);
|
gettimeofday(&tv,NULL);
|
||||||
|
|
Loading…
Reference in New Issue