- Fix typo in I_FPSTimeNS

This commit is contained in:
Magnus Norddahl 2017-11-12 13:22:52 +01:00
parent e3141a4af3
commit efa7c3cacf

View file

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