From f598beb40677f862894f8fc37079ea27802f4f0a Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Thu, 2 Oct 2025 19:52:08 -0700 Subject: [PATCH] whoops.. shh --- src/js/game.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/game.ts b/src/js/game.ts index 9617732..7b6b71f 100644 --- a/src/js/game.ts +++ b/src/js/game.ts @@ -9,7 +9,7 @@ import { sessionId } from "./session" const FPS = 30 const HEIGHT = 540 -const WIDTH = 980 +const WIDTH = 960 type Game = { init?: () => void, update?: (delta: number, input: InputState) => void, draw?: (ctx: GameContext) => void }