mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 16:07:45 +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()
|
uint64_t I_FPSTimeNS()
|
||||||
{
|
{
|
||||||
if (FreezeTime == 0)
|
if (FreezeTime == 0)
|
||||||
return NSToMS(CurrentFrameStartTime);
|
return CurrentFrameStartTime;
|
||||||
else
|
else
|
||||||
return NSToMS(GetClockTimeNS());
|
return GetClockTimeNS();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int I_MSTime()
|
unsigned int I_MSTime()
|
||||||
|
|
Loading…
Reference in a new issue