Use the actual defaults

This commit is contained in:
Gwilym Inzani 2023-07-05 10:06:06 +01:00 committed by Corwin
parent 203dc0cff7
commit 361060da6a
No known key found for this signature in database

View file

@ -3,16 +3,16 @@ import styled from "styled-components";
const DefaultBindings = (): KeyBindings => { const DefaultBindings = (): KeyBindings => {
return { return {
A: "KeyZ", A: "Z",
B: "KeyX", B: "X",
L: "KeyA", L: "A",
R: "KeyS", R: "S",
Start: "Enter", Start: "ENTER",
Select: "ShiftLeft", Select: "SHIFT",
Up: "ArrowUp", Up: "UP",
Down: "ArrowDown", Down: "DOWN",
Left: "ArrowLeft", Left: "LEFT",
Right: "ArrowRight", Right: "RIGHT",
}; };
}; };