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
+2 -2
View File
@@ -7,7 +7,7 @@
#include "decompiler/util/goal_data_reader.h"
#include "decompiler/level_extractor/BspHeader.h"
#include "common/util/assert.h"
#include "common/util/Assert.h"
/*!
* Get the level data from a DGO File.
@@ -21,7 +21,7 @@ decompiler::LinkedObjectFile load_bsp_from_dgo(const std::string& file_name,
auto dgo = DgoReader(short_name, dgo_file_data);
auto entries = dgo.entries();
assert(entries.size() > 0);
ASSERT(entries.size() > 0);
const auto& level_file = entries.back();