diff options
| author | ChiefFruitcake <96551211+ChiefFruitcake@users.noreply.github.com> | 2022-01-09 21:24:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-09 19:24:30 -0700 |
| commit | bc99dedb8bc0d8a1f6fed20e36ed60a3ed70b01b (patch) | |
| tree | 042743f4f487447c0c289f030064f2fa502cc9f4 /include | |
| parent | 7acd1cbc20ad7d5632d006de6c2fae322ca5c8c0 (diff) | |
code_800AF9B0 - ghost data (#133)
* Match functions related to struct at D_8018EE10
* Remove asm for matched functions
* Match func_800B64EC, func_800B6708, and func_800B6798
* Match func_80091EE4. Fix unused variable warnings in code_80091750.c
* Name some of the fields in struct_8018EE10_entry
Diffstat (limited to 'include')
| -rw-r--r-- | include/common_structs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/common_structs.h b/include/common_structs.h index f836778cc..e7a252d6f 100644 --- a/include/common_structs.h +++ b/include/common_structs.h @@ -401,8 +401,14 @@ typedef struct { typedef struct { // Something related to time trial ghost data? - char unk_00[0x80]; -} struct_8018EE10_entry; + /* 0x00 */ s32 unk_00; + /* 0x04 */ u8 ghostDataSaved; + /* 0x05 */ s8 courseIndex; + /* 0x06 */ u8 characterId; + /* 0x07 */ u8 unk_07; + /* 0x08 */ s8 unk_08[0x77]; + /* 0x7F */ u8 checksum; +} struct_8018EE10_entry; // size = 0x80 typedef struct { char unk_00[0x920]; |
