various decomp cleanups (#4247)

Removed a bunch of stuff, old scripts, cleaned up some decompiler
errors, added a new tool that should help with a future PR
This commit is contained in:
Tyler Wilding
2026-04-25 23:35:19 -04:00
committed by GitHub
parent 67cd649cb9
commit 6238f7f567
1172 changed files with 27995 additions and 36769 deletions
+5
View File
@@ -125,6 +125,11 @@ OfflineTestCompileResult compile(OfflineTestDecompiler& dc,
compiler.run_front_end_on_file({"goal_src", "jak3", "engine", "data", "joint-nodes.gc"});
compiler.run_front_end_on_file({"goal_src", "jak3", "engine", "data", "textures.gc"});
compiler.run_front_end_on_file({"goal_src", "jak3", "engine", "data", "part-groups.gc"});
} else if (config.game_name == "jakx") {
compiler.run_front_end_on_file({"goal_src", "jakx", "engine", "data", "art-elts.gc"});
compiler.run_front_end_on_file({"goal_src", "jakx", "engine", "data", "joint-nodes.gc"});
compiler.run_front_end_on_file({"goal_src", "jakx", "engine", "data", "textures.gc"});
compiler.run_front_end_on_file({"goal_src", "jakx", "engine", "data", "part-groups.gc"});
}
int total_lines = 0;