d/jak2: finish drawable-group | drawable-inline-array | drawable-tree and path (#1899)

This commit is contained in:
Tyler Wilding
2022-09-24 12:27:02 -04:00
committed by GitHub
parent 66b19296ef
commit e64414d9d0
33 changed files with 1852 additions and 401 deletions
+6 -1
View File
@@ -609,7 +609,12 @@ void ObjectFileDB::ir2_register_usage_pass(int seg, ObjectFileData& data) {
}
lg::error("Bad register dependency on {} in {}", x.to_charp(), func.name());
func.warnings.warning("Function may read a register that is not set: {}", x.to_string());
if (x.to_string() == "f31") {
func.warnings.warning("Function may read a register that is not set: {}",
x.to_string());
} else {
func.warnings.error("Function may read a register that is not set: {}", x.to_string());
}
}
}
}