mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-09 19:35:37 +00:00
Fix PerformanceCounter
This commit is contained in:
parent
943053a922
commit
3ac2242e65
|
@ -68,13 +68,13 @@ Uint32 SDL_GetTicks(void)
|
||||||
Uint64
|
Uint64
|
||||||
SDL_GetPerformanceCounter(void)
|
SDL_GetPerformanceCounter(void)
|
||||||
{
|
{
|
||||||
return SDL_GetTicks();
|
return sceKernelGetProcessTimeWide();
|
||||||
}
|
}
|
||||||
|
|
||||||
Uint64
|
Uint64
|
||||||
SDL_GetPerformanceFrequency(void)
|
SDL_GetPerformanceFrequency(void)
|
||||||
{
|
{
|
||||||
return 1000;
|
return 1000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_Delay(Uint32 ms)
|
void SDL_Delay(Uint32 ms)
|
||||||
|
|
Loading…
Reference in a new issue