From 746876c2ad27455615fb9b9f713d6ff7de3c17d7 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Thu, 10 Oct 2024 18:41:41 +0200 Subject: [PATCH] Renamed wall flag --- src/map.s | 2 +- src/wram.s | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map.s b/src/map.s index 96f169b..f21c1ea 100644 --- a/src/map.s +++ b/src/map.s @@ -157,7 +157,7 @@ base_room: .db TCORNBOL, TWALLD1, TWALLD1, TWALLD1, TDOORDL, TDOORDR, TWALLD1, TWALLD1, TWALLD1, TCORNBOR ; tile flags for the room base_room_flags: -.db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +.db RF_WALL, 0, 0, 0, 0, 0, 0, 0, 0, 0 .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 .db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/src/wram.s b/src/wram.s index d69c799..86eb108 100644 --- a/src/wram.s +++ b/src/wram.s @@ -81,7 +81,7 @@ damage_anim: .adv 1 ; room flags .se 1 -.de ROOM_F_WALL, 1 +.de RF_WALL, 1 ; pointer to current room struct curr_room: .adv 2 -- 2.30.2