From 361060da6a08d7b2d2fd0f2d1116cdfeed1e49cb Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 5 Jul 2023 10:06:06 +0100 Subject: [PATCH] Use the actual defaults --- website/src/bindings.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/website/src/bindings.tsx b/website/src/bindings.tsx index acd38a60..3cbd4f58 100644 --- a/website/src/bindings.tsx +++ b/website/src/bindings.tsx @@ -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", }; };