mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Timer hack was running too fast.
This commit is contained in:
parent
6d648b075f
commit
c8ce5d62c5
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ u64 GetGlobalTimeUsScaled()
|
|||
float vps;
|
||||
__DisplayGetVPS(&vps);
|
||||
if (vps > 4.0f)
|
||||
freq *= (vps / 60.0f);
|
||||
freq *= (vps / 59.94f);
|
||||
}
|
||||
s64 usSinceLast = ticksSinceLast / freq;
|
||||
return lastGlobalTimeUs + usSinceLast;
|
||||
|
|
Loading…
Add table
Reference in a new issue