mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 14:54:53 -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:
@@ -17,7 +17,7 @@ bool convert_to_expressions(
|
||||
const std::vector<std::string>& arg_names,
|
||||
const std::unordered_map<std::string, LocalVarOverride>& var_override_map,
|
||||
const DecompilerTypeSystem& dts) {
|
||||
assert(top_level_form);
|
||||
ASSERT(top_level_form);
|
||||
|
||||
// set argument names to some reasonable defaults. these will be used if the user doesn't
|
||||
// give us anything more specific.
|
||||
@@ -141,7 +141,7 @@ bool convert_to_expressions(
|
||||
|
||||
// and sanity check for tree errors.
|
||||
for (auto x : top_level_form->elts()) {
|
||||
assert(x->parent_form == top_level_form);
|
||||
ASSERT(x->parent_form == top_level_form);
|
||||
}
|
||||
|
||||
// if we were don't return, make sure we didn't find a return form.
|
||||
|
||||
Reference in New Issue
Block a user