From efa7c3cacf11767ad68cafe80d4517748cd0726d Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Sun, 12 Nov 2017 13:22:52 +0100 Subject: [PATCH] - Fix typo in I_FPSTimeNS --- src/i_time.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i_time.cpp b/src/i_time.cpp index 2c5727a4bc5..908dbdd59fc 100644 --- a/src/i_time.cpp +++ b/src/i_time.cpp @@ -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()