Skip to content

Commit

Permalink
Update PreferencesMenu.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
JVNpixels authored Nov 16, 2024
1 parent 544829f commit 919d98b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/funkin/ui/options/PreferencesMenu.hx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ class PreferencesMenu extends Page
createPrefItemCheckbox('Auto Pause', 'Automatically pause the game when it loses focus', function(value:Bool):Void {
Preferences.autoPause = value;
}, Preferences.autoPause);
createPrefItemCheckbox('Play Miss Sound', 'Disable to stop the mute sound from playing when a miss occurs.', function(value:Bool):Void {
Preferences.playMissSound = value;
}, Preferences.playMissSound);

#if web
createPrefItemCheckbox('Unlocked Framerate', 'Enable to unlock the framerate', function(value:Bool):Void {
Expand Down

0 comments on commit 919d98b

Please sign in to comment.