WIP: Entis GLS CSX v2

This commit is contained in:
2026-01-20 11:40:09 +08:00
parent 8c9f2d7d52
commit ff886e66d3
33 changed files with 955 additions and 214 deletions

View File

@@ -103,7 +103,7 @@ impl Hg3Image {
.is_ok()
{
reader.pos = (offset + 16) as usize;
let entry = Hg3Entry::unpack(&mut reader, false, Encoding::Cp932)?;
let entry = Hg3Entry::unpack(&mut reader, false, Encoding::Cp932, &None)?;
entries.push((entry, (offset + 8) as usize, section_size as usize - 8));
}
offset += section_size as u64;