From 39cd913b78715071cd665cf67af40d4114906790 Mon Sep 17 00:00:00 2001 From: commandblockguy Date: Sat, 21 Dec 2019 12:50:14 -0600 Subject: [PATCH] Spacebar now jumps --- src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.c b/src/main.c index 1308c3c..a4635e7 100644 --- a/src/main.c +++ b/src/main.c @@ -52,6 +52,7 @@ bool play(void) { any_hid_mouse_held(HID_MOUSE_RIGHT); jump_pressed = kb_IsDown(kb_KeyUp) || any_hid_held(KEY_UP) || + any_hid_held(KEY_SPACE) || any_hid_mouse_held(HID_MOUSE_LEFT); #else duck_pressed = kb_IsDown(kb_KeyDown);