From b59cbe930b1ee616d9d8d4637285cecb6da31fcc Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Thu, 20 Nov 2025 17:24:16 +0100 Subject: [PATCH] debug: fixed update tile rendereing --- src/debug.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug.s b/src/debug.s index 416e2fa..edd387a 100644 --- a/src/debug.s +++ b/src/debug.s @@ -95,7 +95,7 @@ debug_current_tile_draw: ld a, [scroll_y] ld b, a - ld a, [current_tile_y] + ld a, [update_tile_y] mul16 a add a, OBJ_OFF_Y sub a, b ; - scroll @@ -105,7 +105,7 @@ debug_current_tile_draw: ld a, [scroll_x] ld b, a - ld a, [current_tile_x] + ld a, [update_tile_x] mul16 a add a, OBJ_OFF_X sub a, b ; - scroll x -- 2.30.2