Skip to content

Commit

Permalink
Fix "Uncapped FPS" menu option in text modes
Browse files Browse the repository at this point in the history
  • Loading branch information
viti95 committed Nov 25, 2024
1 parent 0f964c2 commit 7760d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FASTDOOM/m_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@ void M_DrawDisplayItem(int item, int position)
break;
case uncapped_fps:
V_WriteTextDirect(M_X1, y, "UNCAPPED FPS:");
V_WriteTextDirect(M_X1, y, uncappedFPS ? "ON" : "OFF");
V_WriteTextDirect(M_X2, y, uncappedFPS ? "ON" : "OFF");
break;
}
}
Expand Down

0 comments on commit 7760d71

Please sign in to comment.