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
|
||||
Memstick
|
||||
memstick
|
||||
memstick*
|
||||
Cheats
|
||||
|
||||
/git-version.cpp
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue