mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-16 21:05:12 +00:00
Decouple Debug Features From gc-eu-mq-dbg (#2296)
* rename OOT_DEBUG to DEBUG_FEATURES * makefile changes * add DEBUG_ASSETS * fix DEBUG_FEATURES usages * format * fix errors * review * fix problem and review2 * review * add DEBUG_FEATURES to DEBUG_ASSETS check * review * whoops * format
This commit is contained in:
parent
cf4dc98cc9
commit
17edb82c0d
168 changed files with 652 additions and 606 deletions
|
@ -46,4 +46,13 @@
|
|||
#define FRAMERATE_CONST(value60Hz, value50Hz) (value50Hz)
|
||||
#endif
|
||||
|
||||
// Debug Assets
|
||||
// Due to asset extraction limitations, all versions will not have access to some assets present in debug ROMs
|
||||
// To allow the inclusion of debug features in any version there is a separation between DEBUG_FEATURES and DEBUG_ASSETS
|
||||
#if OOT_VERSION == GC_EU_MQ_DBG && DEBUG_FEATURES
|
||||
#define DEBUG_ASSETS 1
|
||||
#else
|
||||
#define DEBUG_ASSETS 0
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue