mirror of
https://github.com/open-goal/jak-project
synced 2026-07-08 14:36:52 -04:00
update readme and fix always playing str (#1139)
* update readme deps * replace assert * bump timeout * fix memory corruption in kernel * use unknown if level name is invalid
This commit is contained in:
@@ -198,7 +198,7 @@ std::vector<std::string> MakeSystem::get_dependencies(const std::string& target)
|
||||
|
||||
void MakeSystem::add_tool(std::shared_ptr<Tool> tool) {
|
||||
auto& name = tool->name();
|
||||
assert(m_tools.find(name) == m_tools.end());
|
||||
ASSERT(m_tools.find(name) == m_tools.end());
|
||||
m_tools[name] = tool;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user