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 => {
return {
A: "KeyZ",
B: "KeyX",
L: "KeyA",
R: "KeyS",
Start: "Enter",
Select: "ShiftLeft",
Up: "ArrowUp",
Down: "ArrowDown",
Left: "ArrowLeft",
Right: "ArrowRight",
A: "Z",
B: "X",
L: "A",
R: "S",
Start: "ENTER",
Select: "SHIFT",
Up: "UP",
Down: "DOWN",
Left: "LEFT",
Right: "RIGHT",
};
};