Make "Show FPS Counter" in the Windows menu actually show fps, not just speed
This commit is contained in:
parent
0f74a19979
commit
23dd47ab77
2 changed files with 2 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -65,7 +65,7 @@ desc.txt
|
||||||
|
|
||||||
Logs
|
Logs
|
||||||
Memstick
|
Memstick
|
||||||
memstick
|
memstick*
|
||||||
Cheats
|
Cheats
|
||||||
|
|
||||||
/git-version.cpp
|
/git-version.cpp
|
||||||
|
|
|
@ -947,7 +947,7 @@ namespace MainWindow {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_OPTIONS_SHOWFPS:
|
case ID_OPTIONS_SHOWFPS:
|
||||||
g_Config.iShowFPSCounter = !g_Config.iShowFPSCounter;
|
g_Config.iShowFPSCounter = g_Config.iShowFPSCounter ? 0 : 3; // 3 = both speed and FPS
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_OPTIONS_TEXTUREFILTERING_AUTO: setTexFiltering(TEX_FILTER_AUTO); break;
|
case ID_OPTIONS_TEXTUREFILTERING_AUTO: setTexFiltering(TEX_FILTER_AUTO); break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue