turned off fps debugging (may add as flag late)

This commit is contained in:
nathan 2020-06-22 23:23:16 -07:00
parent 3fdc00b49d
commit dc4c63aeff

View file

@ -1497,9 +1497,9 @@ void View::draw() {
//drawMouse(); //drawMouse();
drawClick(); drawClick();
char fps[40] = " "; // char fps[40] = " ";
snprintf(fps,40," %d lines @ %.1ffps", lineCount, 1000.0 / elapsed(lastFrameTime)); // snprintf(fps,40," %d lines @ %.1ffps", lineCount, 1000.0 / elapsed(lastFrameTime));
drawStringBG(fps, 0,0, mapFont, style.subLabelColor, style.backgroundColor); // drawStringBG(fps, 0,0, mapFont, style.subLabelColor, style.backgroundColor);
SDL_RenderPresent(renderer); SDL_RenderPresent(renderer);