diff --git a/tools/assets/bin2c/Makefile b/tools/assets/bin2c/Makefile index 53752e9f3a..5c4c05b97b 100644 --- a/tools/assets/bin2c/Makefile +++ b/tools/assets/bin2c/Makefile @@ -1,4 +1,4 @@ -CFLAGS := -Wall +CFLAGS := -Wall -O2 bin2c: bin2c.c $(CC) $(CFLAGS) -o $@ $< diff --git a/tools/assets/extract/extase_oot64/misc_resources.py b/tools/assets/extract/extase_oot64/misc_resources.py index d0b875d49b..30e94338bf 100644 --- a/tools/assets/extract/extase_oot64/misc_resources.py +++ b/tools/assets/extract/extase_oot64/misc_resources.py @@ -40,6 +40,7 @@ class CutsceneResource(Resource, can_size_be_unknown=True): def write_extracted(self, memory_context): with self.extract_to_path.open("w") as f: + # TODO move include at the top of the file f.write('#include "z64cutscene_commands.h"\n') if not self.braces_in_source: f.write("{\n")