blob: e3543bdf9bfd11360203c776de7893886f39adf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "versions.h"
/**
* Select dmadata table for version
*/
#if (OOT_VERSION == GC_EU_DBG_2 || OOT_VERSION == GC_EU_MQ_DBG || OOT_VERSION == GC_EU_DBG) && !NON_MATCHING
#include "dmadata_table_dbg.h"
#else
// For retail versions and non-matching builds, dmadata is generated from the specfile segments
#include "dmadata_table_spec.h"
#endif
|