mirror of
https://github.com/zeldaret/oot
synced 2026-05-30 17:06:04 -04:00
177951c4db
* oot-gc-eu-dbg-proto OK * add gc-eu-dbg-proto to readme * mention overdump trimming for all debug roms * rename gc-eu-dbg-proto to gc-eu-dbg-2 Rationale: first version to make it into decomp (which should also be the first one that surfaces) gets an un-numbered version name, then the second version gets -2, and so on
12 lines
348 B
C
12 lines
348 B
C
#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
|