mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 15:02:01 -04:00
[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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user