src dir rework

This commit is contained in:
a
2025-06-23 16:20:59 -04:00
parent 74cf4e1ad4
commit 36bb22d9b8
447 changed files with 442 additions and 435 deletions

View File

@@ -62,7 +62,7 @@ def main():
structdef.append("u8 " + item["name"] + "[" + str(len(demobytes)) + "];")
structobj.append("{" + ",".join(hex(x) for x in demobytes) + "},")
print("#include \"game/memory.h\"")
print("#include \"init/memory.h\"")
print("#include <stddef.h>")
print("")

View File

@@ -136,7 +136,7 @@ try:
structdef.append("{} {}[{}];".format(type, name, len(arr)))
structobj.append("{" + ",".join(arr) + "},")
print("#include \"game/memory.h\"")
print("#include \"init/memory.h\"")
print("#include <stddef.h>")
print("")