mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
04a9d51e90
* Generate dmadata * Remove tab indentations in mkdmadata.c and mkldscript.c * Fix * Review suggestions * Hopefully fix * Fix index Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
9 lines
225 B
C
9 lines
225 B
C
/**
|
|
* Select dmadata table for version
|
|
*/
|
|
#ifdef NON_MATCHING
|
|
// For non-matching builds, dmadata is generated from the specfile segments
|
|
#include "dmadata_table_spec.h"
|
|
#else
|
|
#include "tables/dmadata_table_mqdbg.h"
|
|
#endif
|