We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 461fe49 commit aae7d42Copy full SHA for aae7d42
crates/league-modpkg/src/chunk.rs
@@ -32,6 +32,7 @@ impl ModpkgChunk {
32
let path_index = reader.read_u32::<LE>()?;
33
let wad_paths_index = reader.read_u32::<LE>()?;
34
let layers_index = reader.read_u32::<LE>()?;
35
+ let _ = reader.read_u32::<LE>()?; // reserved
36
37
Ok(Self {
38
path_hash,
crates/league-modpkg/src/lib.rs
@@ -4,7 +4,6 @@ use std::collections::HashMap;
4
5
mod chunk;
6
mod error;
7
-mod pkg_utils;
8
mod read;
9
10
#[derive(Debug, PartialEq)]
crates/league-modpkg/src/pkg_utils.rs
0 commit comments