[decompiler] jak 1 PAL demo support + couple fixes (#934)

* add configs

* final fixes

* Update main.gc

* fix "NO-XGO" gen bug

* oops grr
This commit is contained in:
ManDude
2021-10-24 00:03:19 +01:00
committed by GitHub
parent 8a0ff963f5
commit 20e5f671b1
13 changed files with 14890 additions and 5 deletions
+2 -1
View File
@@ -380,7 +380,8 @@ std::string ObjectFileDB::generate_obj_listing() {
std::string dgos = "[";
for (auto& y : x.dgo_names) {
assert(y.length() >= 5);
dgos += "\"" + y.substr(0, y.length() - 4) + "\", ";
std::string new_str = y == "NO-XGO" ? y : y.substr(0, y.length() - 4);
dgos += "\"" + new_str + "\", ";
}
dgos.pop_back();
dgos.pop_back();