mirror of
https://github.com/open-goal/jak-project
synced 2026-07-08 14:36:52 -04:00
[extractor] fix territory being set to wrong value (#2946)
Also fixes a minor issue where the JP sound bank wouldn't work (Jak 1). Fixes #2793
This commit is contained in:
@@ -511,3 +511,7 @@ void MakeSystem::set_constant(const std::string& name, const std::string& value)
|
||||
void MakeSystem::set_constant(const std::string& name, bool value) {
|
||||
m_goos.set_global_variable_to_symbol(name, value ? "#t" : "#f");
|
||||
}
|
||||
|
||||
void MakeSystem::set_constant(const std::string& name, int value) {
|
||||
m_goos.set_global_variable_to_int(name, value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user