diff options
author | tgsm <doodrabbit@hotmail.com> | 2021-04-30 04:30:27 -0400 |
---|---|---|
committer | tgsm <doodrabbit@hotmail.com> | 2021-04-30 04:30:27 -0400 |
commit | cf188406f006750ec7206e3dd2a6818c767729eb (patch) | |
tree | 865928539f41e0f27ebcce5ea91ca4ea538dfb90 /include/script.h | |
parent | a5d801dade0c8766f950f64fde5536fc36ce8509 (diff) |
Fix a bunch of function signatures
A bunch of functions were thought to be returning/taking in an
unk_204639c but they actually return/take an unksavstruct80. This fixes
that, and also changes a couple of struct members, so this might be
useful for scrcmd.
Diffstat (limited to 'include/script.h')
-rw-r--r-- | include/script.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/script.h b/include/script.h index 9a7270c2..bb237523 100644 --- a/include/script.h +++ b/include/script.h @@ -28,7 +28,8 @@ struct UnkSavStruct80 u8 padding[0x8];
u32 unk08;
struct SaveBlock2 *saveBlock2; //0xC
- u8 padding2[0xC];
+ struct UnkStruct_0204639C *unk10;
+ u8 padding2[0x8];
u32 *mapId; //0x1C
u8 padding3[0x18];
u32 unk38;
|