mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-02 22:14:33 +00:00
Changes to support renaming segments in the spec (#1259)
* 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
This commit is contained in:
parent
b0bfa9eb69
commit
6f0b8f1e74
9 changed files with 1993 additions and 1987 deletions
|
@ -17,7 +17,7 @@ static void write_dmadata_table(FILE *fout)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < g_segmentsCount; i++)
|
||||
fprintf(fout, "DEFINE_DMA_ENTRY(%s)\n", g_segments[i].name);
|
||||
fprintf(fout, "DEFINE_DMA_ENTRY(%s, \"%s\")\n", g_segments[i].name, g_segments[i].name);
|
||||
}
|
||||
|
||||
static void usage(const char *execname)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue