diff options
author | tpart <tpart120@proton.me> | 2024-07-07 18:55:47 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-07 18:55:47 +0200 |
commit | f0f6af6822b3057f0735adf705bcce4c4548f321 (patch) | |
tree | 464a1ace9709984b6d767aeed45fd4ad63933625 /client/menu | |
parent | 44499c6e81dc5cc014f502cf6cb4db0c96081d7e (diff) | |
download | hurrycurry-f0f6af6822b3057f0735adf705bcce4c4548f321.tar hurrycurry-f0f6af6822b3057f0735adf705bcce4c4548f321.tar.bz2 hurrycurry-f0f6af6822b3057f0735adf705bcce4c4548f321.tar.zst |
Fix menu opening on back
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/game.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/game.gd b/client/menu/game.gd index c36fca86..f126b448 100644 --- a/client/menu/game.gd +++ b/client/menu/game.gd @@ -21,7 +21,7 @@ func _ready(): super() func _input(_event): - if Input.is_action_just_pressed("ui_cancel"): + if Input.is_action_just_pressed("ui_menu"): open_ingame_menu() func open_ingame_menu(): |