Skip to content

Commit

Permalink
fix missing defaults for 1p jumps
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton authored Sep 13, 2024
1 parent e623ad1 commit 635b90c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/UILayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 635b90c

Please sign in to comment.