Make "Show FPS Counter" in the Windows menu actually show fps, not just speed

This commit is contained in:
Henrik Rydgård 2019-02-09 11:22:41 +01:00
parent 0f74a19979
commit 23dd47ab77
2 changed files with 2 additions and 2 deletions

View file

@ -947,7 +947,7 @@ namespace MainWindow {
break;
case ID_OPTIONS_SHOWFPS:
g_Config.iShowFPSCounter = !g_Config.iShowFPSCounter;
g_Config.iShowFPSCounter = g_Config.iShowFPSCounter ? 0 : 3; // 3 = both speed and FPS
break;
case ID_OPTIONS_TEXTUREFILTERING_AUTO: setTexFiltering(TEX_FILTER_AUTO); break;