diff options
author | tgsm <doodrabbit@hotmail.com> | 2021-05-05 14:10:45 -0400 |
---|---|---|
committer | tgsm <doodrabbit@hotmail.com> | 2021-05-06 13:49:29 -0400 |
commit | fead56db333c9eb3024ad4483c26a11a66ffe9f1 (patch) | |
tree | 54438b13630f4e82d225c447062393e73fb81294 /include | |
parent | b4f9d737d2880ae21e4ad2d250d62a29a5e36325 (diff) |
Decompile unk_0208890C
Diffstat (limited to 'include')
-rw-r--r-- | include/script.h | 4 | ||||
-rw-r--r-- | include/unk_0208890C.h | 25 |
2 files changed, 28 insertions, 1 deletions
diff --git a/include/script.h b/include/script.h index bb237523..cb41889d 100644 --- a/include/script.h +++ b/include/script.h @@ -37,7 +37,9 @@ struct UnkSavStruct80 u32 unk60;
u8 padding5[0x14];
u32 unk78;
- u8 padding6[0x2C];
+ u8 padding6[0x1C];
+ void *unk98;
+ u8 padding7[0xC];
struct UnkStruct_02046444 * unkA8;
};
diff --git a/include/unk_0208890C.h b/include/unk_0208890C.h new file mode 100644 index 00000000..9ec040a1 --- /dev/null +++ b/include/unk_0208890C.h @@ -0,0 +1,25 @@ +#ifndef POKEDIAMOND_UNK_0208890C_H +#define POKEDIAMOND_UNK_0208890C_H + +struct Bag; +struct Options; +struct PlayerData; +struct SaveBlock2; + +struct UnkStruct_0208890C +{ + u8 padding[0x4]; + void* unk4; + void* unk8; + struct SaveBlock2* sav2; + struct PlayerData* player; + struct Bag* bag; + struct Options* options; + void* unk1C; +}; + +struct UnkStruct_0208890C* FUN_0208890C(void*, struct SaveBlock2* sav2, u32 heap_id, void*); +void FUN_02088950(struct UnkSavStruct80*, struct UnkStruct_0208890C*); +struct UnkStruct_0208890C* FUN_02088960(struct UnkSavStruct80*, void*, u32 heap_id); + +#endif |