Aoc2022_Day3/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);