mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Use the actual defaults
This commit is contained in:
parent
203dc0cff7
commit
361060da6a
|
@ -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",
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue