From dc4c63aeffbecdacbb7c7c8f49ed2c7a820063af Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 22 Jun 2020 23:23:16 -0700 Subject: [PATCH] turned off fps debugging (may add as flag late) --- View.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/View.cpp b/View.cpp index 85cd674..4ae5878 100644 --- a/View.cpp +++ b/View.cpp @@ -1497,9 +1497,9 @@ void View::draw() { //drawMouse(); drawClick(); - char fps[40] = " "; - snprintf(fps,40," %d lines @ %.1ffps", lineCount, 1000.0 / elapsed(lastFrameTime)); - drawStringBG(fps, 0,0, mapFont, style.subLabelColor, style.backgroundColor); + // char fps[40] = " "; + // snprintf(fps,40," %d lines @ %.1ffps", lineCount, 1000.0 / elapsed(lastFrameTime)); + // drawStringBG(fps, 0,0, mapFont, style.subLabelColor, style.backgroundColor); SDL_RenderPresent(renderer);