From 070aa84bc411f5023e013026d2223bb402b5bdb4 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Sun, 15 Feb 2026 22:48:29 +0100 Subject: [PATCH] fix(2d-nds): zoom more on the nds --- app/components/NDS2D.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/NDS2D.vue b/app/components/NDS2D.vue index 72d7cb9..473f963 100644 --- a/app/components/NDS2D.vue +++ b/app/components/NDS2D.vue @@ -2,7 +2,7 @@ const ndsScale = ref(1); const updateScale = () => { - const scaleX = (window.innerWidth - 40) / 280; + const scaleX = (window.innerWidth - 40) / 235; const scaleY = (window.innerHeight - 40) / 431; ndsScale.value = Math.min(scaleX, scaleY); };