Commit 3ac2242e652a84b3f48939d8b22602463a1f2cae

Ivan Epifanov 2020-12-09T12:37:39

Fix PerformanceCounter

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/timer/vita/SDL_systimer.c b/src/timer/vita/SDL_systimer.c
index adc7b85..91902d9 100644
--- a/src/timer/vita/SDL_systimer.c
+++ b/src/timer/vita/SDL_systimer.c
@@ -68,13 +68,13 @@ Uint32 SDL_GetTicks(void)
 Uint64
 SDL_GetPerformanceCounter(void)
 {
-    return SDL_GetTicks();
+    return sceKernelGetProcessTimeWide();
 }
 
 Uint64
 SDL_GetPerformanceFrequency(void)
 {
-    return 1000;
+    return 1000000;
 }
 
 void SDL_Delay(Uint32 ms)