From e38f88a3e45201880973db6b25d7bfc4458427c5 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Mon, 10 Dec 2018 03:39:15 +0100 Subject: [PATCH] revert fps debug changes --- src/debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug.c b/src/debug.c index f43b7aa..88690e1 100644 --- a/src/debug.c +++ b/src/debug.c @@ -57,11 +57,11 @@ void DrawFrameInfoStart() debugText, sizeof(debugText), "FPS: %lu | Time: %2.2f ms ", - DebugFrameCount * 2, + DebugFrameCount, DebugFrameTime); DebugFrameCount = 0; - tick_fps = tick_start + 500; + tick_fps = tick_start + 1000; CounterStart(); }