From 350a0e31ca46c065bf66d19b52ece4938a5243d3 Mon Sep 17 00:00:00 2001 From: Ancurio Date: Sun, 26 Sep 2021 03:57:35 +0200 Subject: [PATCH] Keybindings: Add ZXC -> ABC bindings --- src/keybindings.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/keybindings.cpp b/src/keybindings.cpp index 7f99356..40962f7 100644 --- a/src/keybindings.cpp +++ b/src/keybindings.cpp @@ -77,6 +77,10 @@ static const KbBindingData defaultKbBindings[] = { SDL_SCANCODE_KP_0, Input::B }, { SDL_SCANCODE_LSHIFT, Input::A }, + { SDL_SCANCODE_C, Input::C }, + { SDL_SCANCODE_X, Input::B }, + { SDL_SCANCODE_Z, Input::A }, + { SDL_SCANCODE_W, Input::Up }, { SDL_SCANCODE_A, Input::Left }, { SDL_SCANCODE_S, Input::Down },