[decompiler] Jak 2 modifications, new all-types code (#1553)

* temp

* look at old game types

* clean up
This commit is contained in:
water111
2022-06-25 21:26:15 -04:00
committed by GitHub
parent c9de15ba64
commit 91fa0122d8
40 changed files with 1762 additions and 586 deletions
+3 -1
View File
@@ -34,8 +34,10 @@ Register get_expected_fpr_backup(int n, int total) {
} // namespace
Function::Function(int _start_word, int _end_word) : start_word(_start_word), end_word(_end_word) {
Function::Function(int _start_word, int _end_word, GameVersion version)
: start_word(_start_word), end_word(_end_word) {
ir2.form_pool.reset(new FormPool());
ir2.env.version = version;
}
Function::~Function() {}