mirror of
https://github.com/open-goal/jak-project
synced 2026-08-22 07:04:29 -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:
@@ -9,7 +9,7 @@ GameCountResult process_game_count(ObjectFileData& data) {
|
||||
auto& words = data.linked_data.words_by_seg.at(0);
|
||||
auto reader = LinkedWordReader(&words);
|
||||
auto type = reader.get_type_tag();
|
||||
assert(type == "game-count-info");
|
||||
ASSERT(type == "game-count-info");
|
||||
auto length = reader.get_word<s32>();
|
||||
|
||||
for (s32 i = 0; i < length; i++) {
|
||||
@@ -21,7 +21,7 @@ GameCountResult process_game_count(ObjectFileData& data) {
|
||||
|
||||
result.mystery_data[0] = reader.get_word<u32>();
|
||||
result.mystery_data[1] = reader.get_word<u32>();
|
||||
assert(reader.words_left() == 0);
|
||||
ASSERT(reader.words_left() == 0);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user