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:
water111
2022-02-08 19:02:47 -05:00
committed by GitHub
parent 3f394ef4d6
commit 78cde74d5a
243 changed files with 3525 additions and 3503 deletions
+1 -1
View File
@@ -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;
}