- Fix typo in I_FPSTimeNS

This commit is contained in:
Magnus Norddahl 2017-11-12 13:22:52 +01:00
parent e3141a4af3
commit efa7c3cacf
1 changed files with 2 additions and 2 deletions

View File

@ -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()