From fc57248ee20c6c408265fe181cd4e43cf9593d53 Mon Sep 17 00:00:00 2001 From: Supalosa Date: Sat, 19 Oct 2024 20:13:40 +1100 Subject: [PATCH] fix sw tile rendering in wrong place --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index a9bdbbe..eea4e3e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -910,7 +910,7 @@ function drawWave() { if (t < 8) { ctx.fillRect( x * size, - (screenY + 1) * size, + (y + 1) * size, 1 * size, -1 * size );