Skip to content

Commit

Permalink
Support rb3 milo directory
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Aug 2, 2023
1 parent 4c4704b commit 1d0357f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/grim/src/io/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ impl MiloArchive {

reader.seek(SeekFrom::Current(8))?; // Skip extra nums

if version >= 32 {
reader.seek(SeekFrom::Current(1))?; // Skip unknown bool
}

// Update class name
ObjectDir::fix_class_name(version, &mut dir_type);
} else {
Expand Down

0 comments on commit 1d0357f

Please sign in to comment.