generated from sigonasr2/CPlusPlusProjectTemplate
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.
14 lines
517 B
14 lines
517 B
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);
|
|
|