From 635b90cdf322401bac782f18448d938771fab599 Mon Sep 17 00:00:00 2001 From: Cvolton Date: Fri, 13 Sep 2024 18:21:25 +0200 Subject: [PATCH] fix missing defaults for 1p jumps --- src/UILayer.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/UILayer.cpp b/src/UILayer.cpp index 2fa52bb..bf39ba2 100644 --- a/src/UILayer.cpp +++ b/src/UILayer.cpp @@ -414,9 +414,11 @@ struct $modify(UILayer) { { Keybind::create(KEY_Space), Keybind::create(KEY_W), + Keybind::create(KEY_Up), ControllerBind::create(CONTROLLER_A), ControllerBind::create(CONTROLLER_Up), - ControllerBind::create(CONTROLLER_RB) + ControllerBind::create(CONTROLLER_RB), + ControllerBind::create(CONTROLLER_LB) }, Category::PLAY_1P_CLASSIC, false @@ -464,9 +466,11 @@ struct $modify(UILayer) { { Keybind::create(KEY_Space), Keybind::create(KEY_W), + Keybind::create(KEY_Up), ControllerBind::create(CONTROLLER_A), ControllerBind::create(CONTROLLER_Up), - ControllerBind::create(CONTROLLER_RB) + ControllerBind::create(CONTROLLER_RB), + ControllerBind::create(CONTROLLER_LB) }, Category::PLAY_2P_PLATFORMER, false