1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-04 15:04:31 +00:00

Remove const from ActorInit initvars declarations (#1417)

This commit is contained in:
Dragorn421 2022-10-25 01:29:38 +02:00 committed by GitHub
parent ce2e5e71c8
commit c0a0688dc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
433 changed files with 435 additions and 435 deletions

View file

@ -154,7 +154,7 @@ def bootstrap(ovl_path, ovl_text):
if draw_func != "0x00000000" and draw_func != "Actor_Noop":
decs += "void " + draw_func_name + "(" + struct_name + "* this, PlayState* play);\n"
init_vars = "const ActorInit " + init_vars_name + " =\n{\n"
init_vars = "ActorInit " + init_vars_name + " =\n{\n"
init_vars += indent + actor_id_name + ",\n"
init_vars += indent + actor_type_name + ",\n"
init_vars += indent + "ROOM,\n" + indent + "FLAGS,\n"