summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-07-25 17:49:49 +0200
committertpart <tpart120@proton.me>2024-07-25 17:49:49 +0200
commitb1c2d99e174e5d0c1b34c2b5cd96c3f17b3dbe6e (patch)
tree14d5dd500d119a3d86615e2713bea30661eae1cf
parent5bf5a200ada9ba03ca2a12c1503318a97166d7c7 (diff)
downloadhurrycurry-b1c2d99e174e5d0c1b34c2b5cd96c3f17b3dbe6e.tar
hurrycurry-b1c2d99e174e5d0c1b34c2b5cd96c3f17b3dbe6e.tar.bz2
hurrycurry-b1c2d99e174e5d0c1b34c2b5cd96c3f17b3dbe6e.tar.zst
Fix typo which crashes game
-rw-r--r--client/global.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd
index 8849c4d6..b25317e3 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -42,7 +42,7 @@ var using_joypad := false
var default_settings := {
"language": DropdownSetting.new(tr("Language"), 0, languages),
"master_volume": RangeSetting.new(tr("Master Volume"), 0, -30, 0),
- "muisc_volume": RangeSetting.new(tr("Music Volume"), 0, -30, 0),
+ "music_volume": RangeSetting.new(tr("Music Volume"), 0, -30, 0),
"sfx_volume": RangeSetting.new(tr("SFX Volume"), 0, -30, 0),
"fullscreen": DropdownSetting.new(tr("Fullscreen"), 0, [tr("Keep"), tr("Always"), tr("Never")]),
"touch_controls": ToggleSetting.new(tr("Enable touch screen controls"), DisplayServer.is_touchscreen_available()),