mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Fix typo in I_FPSTimeNS
This commit is contained in:
parent
e3141a4af3
commit
efa7c3cacf
1 changed files with 2 additions and 2 deletions
|
@ -143,9 +143,9 @@ uint64_t I_NSTime()
|
|||
uint64_t I_FPSTimeNS()
|
||||
{
|
||||
if (FreezeTime == 0)
|
||||
return NSToMS(CurrentFrameStartTime);
|
||||
return CurrentFrameStartTime;
|
||||
else
|
||||
return NSToMS(GetClockTimeNS());
|
||||
return GetClockTimeNS();
|
||||
}
|
||||
|
||||
unsigned int I_MSTime()
|
||||
|
|
Loading…
Reference in a new issue