From 6227f24d95c336f9e67ba1bbbdb1dcb1dbdcad8b Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Tue, 23 Sep 2025 19:08:16 +0200 Subject: [PATCH] update: video adjust scroll now hapens in game update state instead of blank --- src/update.s | 3 +++ src/video.s | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/update.s b/src/update.s index 016a04b..d286ec0 100644 --- a/src/update.s +++ b/src/update.s @@ -7,11 +7,14 @@ update_game: ; clear oam call shadow_oam_clear + + call video_map_adjust_scroll call player_draw call player_update call actor_update_all + ret diff --git a/src/video.s b/src/video.s index 408ff45..0232524 100644 --- a/src/video.s +++ b/src/video.s @@ -24,11 +24,7 @@ vblank: ; dma previous frame's oam call OAMDMAFN - call scroll_write - - - call video_map_adjust_scroll ld a, 1 ld [frame_ready], a -- 2.30.2