From f4eba400c9fbcbb26f786abccdd91414ba59049c Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Fri, 25 Jul 2025 16:43:53 +0200 Subject: [PATCH] banking: Fixed accidental write to ram area causing rom size to be out of alignment --- src/wram.s | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wram.s b/src/wram.s index 608cb5b..280cbec 100644 --- a/src/wram.s +++ b/src/wram.s @@ -143,8 +143,7 @@ p0_units: .adv act_size * UNITS_MAX ; list of seeds used ; for the current maps ; fill using mapgen_seed -map_seeds: -dw FLOOR_MAP_COUNT * 2 +map_seeds: .adv FLOOR_MAP_COUNT * 2 ; map tiles and collision data map: .adv c_size * MAP_SIZE -- 2.30.2