mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
6f0b8f1e74
* Allow dmadata to have names different from the original table Added an argument to the dma define which is used to match debug strings in z_std_dma.c * Update kaleido manager to support different overlay names * Update the actor table to support different actor names Added an argument to the define which is used to match debug strings in z_actor_dlftbls.c * PR suggestions for argument descriptions
9 lines
218 B
C
9 lines
218 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 "dmadata_table_mqdbg.h"
|
|
#endif
|