From 13123234da32faa54a3dce9eb8d7de5dc98ffac6 Mon Sep 17 00:00:00 2001 From: Krzysztof Rudnicki Date: Sat, 2 Aug 2025 12:37:54 +0200 Subject: [PATCH] feat: make the maze smaller --- src/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.js b/src/game.js index c6decc9..232da01 100644 --- a/src/game.js +++ b/src/game.js @@ -11,7 +11,7 @@ export class Game { this.lastTime = 0; // Game settings - this.cellSize = 40; + this.cellSize = 50; this.cols = Math.floor(canvas.width / this.cellSize); this.rows = Math.floor(canvas.height / this.cellSize);