mirror of
https://github.com/zeldaret/oot
synced 2026-05-22 22:44:26 -04:00
e66e6f8f1d
* gc-eu-dbg OK * cleanup/fortify makefile and line_numbers.h changes * fill segments.csv * add gc-eu-dbg to Jenkinsfile * cleanup/fortify dmadata_table.h * add gc-eu-dbg to readme * fix checksum check and compressed checksum
12 lines
318 B
C
12 lines
318 B
C
#include "versions.h"
|
|
|
|
/**
|
|
* Select dmadata table for version
|
|
*/
|
|
#if (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
|