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:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user