mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-01-09 00:12:46 +00:00
Fix compilation error when generating demo data
This commit is contained in:
parent
bccac8c78c
commit
5d93cca229
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ def main():
|
|||
for item in demofiles:
|
||||
structdef.append("u8 " + item["name"] + "[" + str(item["size"]) + "];")
|
||||
if "ignore" not in item:
|
||||
rom_assets.append(f"ROM_ASSET_LOAD_DEMO({item["name"]}, gDemoInputs.{item["name"]}, {item["address"]}, {item["size"]}, 0x00000000, {item["size"]});")
|
||||
rom_assets.append(f"ROM_ASSET_LOAD_DEMO({item['name']}, gDemoInputs.{item['name']}, {item['address']}, {item['size']}, 0x00000000, {item['size']});")
|
||||
|
||||
print("#include \"types.h\"")
|
||||
print("#include <stddef.h>")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue