From 84b48ed6646b2b800f6dc21d8d553196069fae00 Mon Sep 17 00:00:00 2001 From: JVN-Pixels <146671762+JVNpixels@users.noreply.github.com> Date: Sat, 16 Nov 2024 14:15:45 -0800 Subject: [PATCH] Update PreferencesMenu.hx --- source/funkin/ui/options/PreferencesMenu.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/funkin/ui/options/PreferencesMenu.hx b/source/funkin/ui/options/PreferencesMenu.hx index ae0137508d..10cff6273d 100644 --- a/source/funkin/ui/options/PreferencesMenu.hx +++ b/source/funkin/ui/options/PreferencesMenu.hx @@ -66,15 +66,15 @@ class PreferencesMenu extends Page createPrefItemCheckbox('Camera Zooming on Beat', 'Disable to stop the camera bouncing to the song', function(value:Bool):Void { Preferences.zoomCamera = value; }, Preferences.zoomCamera); + 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); createPrefItemCheckbox('Debug Display', 'Enable to show FPS and other debug stats', function(value:Bool):Void { Preferences.debugDisplay = value; }, Preferences.debugDisplay); 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 {