mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-25 09:45:02 +00:00
17edb82c0d
* 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
11 lines
290 B
C
11 lines
290 B
C
#include "versions.h"
|
|
|
|
/**
|
|
* Select dmadata table for version
|
|
*/
|
|
#if OOT_VERSION == GC_EU_MQ_DBG && !NON_MATCHING
|
|
#include "dmadata_table_mqdbg.h"
|
|
#else
|
|
// For retail versions and non-matching builds, dmadata is generated from the specfile segments
|
|
#include "dmadata_table_spec.h"
|
|
#endif
|