1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 21:17:45 +00:00

Make hash for index hash table entries public

This commit is contained in:
Joshua Goins 2023-10-12 18:59:37 -04:00
parent 0a6209dfd5
commit 0896ef829c

View file

@ -48,7 +48,7 @@ pub struct IndexHashBitfield {
#[binrw] #[binrw]
pub struct IndexHashTableEntry { pub struct IndexHashTableEntry {
pub(crate) hash: u64, pub hash: u64,
#[br(pad_after = 4)] #[br(pad_after = 4)]
pub(crate) bitfield: IndexHashBitfield, pub(crate) bitfield: IndexHashBitfield,
} }