about summary refs log tree commit diff stats
path: root/js/puzzle-dungeon/game.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/puzzle-dungeon/game.js')
-rw-r--r--js/puzzle-dungeon/game.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/puzzle-dungeon/game.js b/js/puzzle-dungeon/game.js
index 4ca91d3..4c83ea2 100644
--- a/js/puzzle-dungeon/game.js
+++ b/js/puzzle-dungeon/game.js
@@ -119,7 +119,7 @@ export function initializeGame() {
 
 export function resizeCanvas() {
     const canvas = document.getElementById('gameCanvas');
-    const width = Math.min(window.innerWidth, window.innerHeight) * 0.9;
+    const width = Math.min(window.innerWidth, window.innerHeight) * 0.5;
     canvas.width = width;
     canvas.height = width;
     drawGrid(grid);