We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be1b35 commit 0dab7ebCopy full SHA for 0dab7eb
src/config.h
@@ -58,7 +58,7 @@
58
#define DIFF_STATUS 1
59
#endif
60
#ifndef VERSION
61
-#define VERSION 1.1
+#define VERSION 1.3
62
63
64
src/main.c
@@ -55,8 +55,8 @@ bool play(void) {
55
any_hid_held(KEY_SPACE) ||
56
any_hid_mouse_held(HID_MOUSE_LEFT);
57
#else
- duck_pressed = kb_IsDown(kb_KeyDown);
- jump_pressed = kb_IsDown(kb_KeyUp);
+ duck_pressed = kb_IsDown(kb_KeyDown) || kb_IsDown(kb_KeyAlpha);
+ jump_pressed = kb_IsDown(kb_KeyUp) || kb_IsDown(kb_Key2nd);
game.dino.ducking = duck_pressed && game.dino.on_ground;
0 commit comments