diff options
| author | cadmic <cadmic24@gmail.com> | 2024-08-19 14:58:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-19 23:58:31 +0200 |
| commit | d191e8714e0b05ab8305951adff89542eb83e7c8 (patch) | |
| tree | 7c2efe8fde8b02b9fc89cee4ea7788cecf6d763f /include | |
| parent | 6bc6cedaf8a26b4b73be748b635308fb059c61f1 (diff) | |
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
Diffstat (limited to 'include')
| -rw-r--r-- | include/segment_symbols.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/segment_symbols.h b/include/segment_symbols.h index 21fd52f0a..4e0ce0bbd 100644 --- a/include/segment_symbols.h +++ b/include/segment_symbols.h @@ -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 |
