From 0bfa9159bf6632453e2af2290d81dc192a0f68af Mon Sep 17 00:00:00 2001 From: Mike Lester Date: Mon, 30 Dec 2024 14:16:45 -0700 Subject: [PATCH] Wind Waker: Correct ortho viewport numbers --- src/ZeldaWindWaker/Main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZeldaWindWaker/Main.ts b/src/ZeldaWindWaker/Main.ts index 78f2dfd7d..2e3a259de 100644 --- a/src/ZeldaWindWaker/Main.ts +++ b/src/ZeldaWindWaker/Main.ts @@ -742,7 +742,7 @@ class d_s_play extends fopScn { this.grassPacket = new GrassPacket(globals); this.woodPacket = new WoodPacket(globals); - this.currentGrafPort = new J2DGrafContext(globals.modelCache.device, 0.0, 0.0, 608.0, 448.0, -1.0, 1.0); + this.currentGrafPort = new J2DGrafContext(globals.modelCache.device, 0.0, 0.0, 640.0, 480.0, -1.0, 1.0); globals.scnPlay = this;