From 649c306cf988729cd97d6af031a589b49fb18c2a Mon Sep 17 00:00:00 2001 From: jojobear13 Date: Fri, 12 Jan 2024 04:10:32 -0600 Subject: [PATCH] band-aid fix for the border block glitch --- home/overworld.asm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home/overworld.asm b/home/overworld.asm index 604c1d37..93c77f74 100644 --- a/home/overworld.asm +++ b/home/overworld.asm @@ -2087,7 +2087,12 @@ LoadMapHeader:: ld [wCurMapTileset], a ldh [hPreviousTileset], a bit 7, b - ret nz + + ;replace the conditional return with a nop in order to always load the map header data... + ;...even when selecting CONTINUE from the main menu +; ret nz + nop + ld hl, MapHeaderPointers ld a, [wCurMap] sla a