Skip to content

Commit

Permalink
Make "Show FPS Counter" in the Windows menu actually show fps, not ju…
Browse files Browse the repository at this point in the history
…st speed
  • Loading branch information
hrydgard committed Feb 9, 2019
1 parent 0f74a19 commit 23dd47a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -65,7 +65,7 @@ desc.txt

Logs
Memstick
memstick
memstick*
Cheats

/git-version.cpp
Expand Down
2 changes: 1 addition & 1 deletion Windows/MainWindowMenu.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 23dd47a

Please sign in to comment.