1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-16 04:44:44 +00:00

Allow building the Debug ROM without debug features (#2052)

* Allow building the Debug ROM without debug features

* Fix bss

* Add comment

* Reword again

* Fix bss
This commit is contained in:
cadmic 2024-08-19 14:58:31 -07:00 committed by GitHub
parent 6bc6cedaf8
commit d191e8714e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 17 additions and 10 deletions

View file

@ -648,7 +648,9 @@ DECLARE_ROM_SEGMENT(spot20_room_0)
DECLARE_ROM_SEGMENT(ganon_tou_room_0)
#if OOT_DEBUG
// Room symbols for compiling test scenes, these are not wrapped in an `#if OOT_DEBUG`
// so that debug ROMs (including gc-eu-mq-dbg) can be built with OOT_DEBUG=0.
DECLARE_ROM_SEGMENT(test01_room_0)
DECLARE_ROM_SEGMENT(besitu_room_0)
@ -670,6 +672,5 @@ DECLARE_ROM_SEGMENT(testroom_room_1)
DECLARE_ROM_SEGMENT(testroom_room_2)
DECLARE_ROM_SEGMENT(testroom_room_3)
DECLARE_ROM_SEGMENT(testroom_room_4)
#endif
#endif