From d13c1518178bbc34debcffa2ce7627f31a9804ca Mon Sep 17 00:00:00 2001 From: Matthew Budd Date: Sat, 28 Nov 2020 22:05:39 -0500 Subject: [PATCH] Default Qt GUI Timing statistics calcutions to off. TODO make timing stats enable via GUI. --- src/drivers/Qt/sdl-throttle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/Qt/sdl-throttle.cpp b/src/drivers/Qt/sdl-throttle.cpp index 56329582..f94612b8 100644 --- a/src/drivers/Qt/sdl-throttle.cpp +++ b/src/drivers/Qt/sdl-throttle.cpp @@ -21,7 +21,7 @@ static double Lasttime=0, Nexttime=0, Latetime=0; static double desired_frametime = (1.0 / 60.099823); static double frameDeltaMin = 99999.0; static double frameDeltaMax = 0.0; -static bool keepFrameTimeStats = true; +static bool keepFrameTimeStats = false; static int InFrame = 0; double g_fpsScale = Normal; // used by sdl.cpp bool MaxSpeed = false;