You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AoC2022_Day9/diff

15 lines
517 B

2 years ago
1114d1113
< void SetFPSDisplay(bool display);
1176,1177c1175
< int nFrameCount = 0;
< bool showFPS = true;
---
> int nFrameCount = 0;
3203,3204d3200
< void PixelGameEngine::SetFPSDisplay(bool display)
< { showFPS=display; }
3543c3539
< std::string sTitle = "OneLoneCoder.com - Pixel Game Engine - " + sAppName + ((showFPS)?" - FPS: " + std::to_string(nFrameCount):"");
---
> std::string sTitle = "OneLoneCoder.com - Pixel Game Engine - " + sAppName + " - FPS: " + std::to_string(nFrameCount);