mirror of
https://github.com/redstrate/Physis.git
synced 2025-04-20 11:47:46 +00:00
Convert more signed integers to unsigned variants
Should help protect against future patch troubles
This commit is contained in:
parent
267feae8cf
commit
0621ce03d7
1 changed files with 3 additions and 3 deletions
|
@ -248,8 +248,8 @@ struct SqpkFileOperationData {
|
|||
#[br(pad_after = 2)]
|
||||
operation: SqpkFileOperation,
|
||||
|
||||
offset: i64,
|
||||
file_size: i64,
|
||||
offset: u64,
|
||||
file_size: u64,
|
||||
|
||||
#[br(temp)]
|
||||
path_length: u32,
|
||||
|
@ -285,7 +285,7 @@ struct SqpkTargetInfo {
|
|||
#[br(pad_before = 3)]
|
||||
platform: PlatformId,
|
||||
region: Region,
|
||||
#[br(map = | x : i16 | x == 1)]
|
||||
#[br(map = | x : u16 | x == 1)]
|
||||
is_debug: bool,
|
||||
version: u16,
|
||||
#[br(little)]
|
||||
|
|
Loading…
Add table
Reference in a new issue