1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-25 13:57:45 +00:00

Can't do math, fix index hash table entry size

This commit is contained in:
Joshua Goins 2022-08-09 19:35:14 -04:00
parent 7292ad930a
commit a262591057

View file

@ -67,7 +67,7 @@ pub struct IndexFile {
index_header: SqPackIndexHeader,
#[br(seek_before = SeekFrom::Start(index_header.index_data_offset.into()))]
#[br(count = index_header.index_data_size / 24)]
#[br(count = index_header.index_data_size / 16)]
pub entries: Vec<IndexHashTableEntry>,
}