Skip to content

Commit 635b90c

Browse files
authored
fix missing defaults for 1p jumps
1 parent e623ad1 commit 635b90c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/UILayer.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,11 @@ struct $modify(UILayer) {
414414
{
415415
Keybind::create(KEY_Space),
416416
Keybind::create(KEY_W),
417+
Keybind::create(KEY_Up),
417418
ControllerBind::create(CONTROLLER_A),
418419
ControllerBind::create(CONTROLLER_Up),
419-
ControllerBind::create(CONTROLLER_RB)
420+
ControllerBind::create(CONTROLLER_RB),
421+
ControllerBind::create(CONTROLLER_LB)
420422
},
421423
Category::PLAY_1P_CLASSIC,
422424
false
@@ -464,9 +466,11 @@ struct $modify(UILayer) {
464466
{
465467
Keybind::create(KEY_Space),
466468
Keybind::create(KEY_W),
469+
Keybind::create(KEY_Up),
467470
ControllerBind::create(CONTROLLER_A),
468471
ControllerBind::create(CONTROLLER_Up),
469-
ControllerBind::create(CONTROLLER_RB)
472+
ControllerBind::create(CONTROLLER_RB),
473+
ControllerBind::create(CONTROLLER_LB)
470474
},
471475
Category::PLAY_2P_PLATFORMER,
472476
false

0 commit comments

Comments
 (0)