diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2023-06-28 14:30:11 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-28 14:30:11 -0600 |
| commit | d6eb25aae3a4c39394b60fb7e0290136f480b453 (patch) | |
| tree | 3e3bd9ac44b8b5568dfc13bba05418513e13968d /include/objects.h | |
| parent | 1b659170dcb7053d3b1ba8a603538613e40c8398 (diff) | |
Cleaning Up Warnings (#317)
* Update mk64 makefile to reflect sm64 makefile
* print func matches and fix some warnings
Diffstat (limited to 'include/objects.h')
| -rw-r--r-- | include/objects.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/objects.h b/include/objects.h index 67239d4f9..c60a26c2a 100644 --- a/include/objects.h +++ b/include/objects.h @@ -23,16 +23,16 @@ typedef struct /* 0x54 */ s32 unk_054; /* 0x58 */ s32 unk_058; /* 0x5C */ s32 unk_05C; - /* 0x60 */ s32 *unk_060; - /* 0x64 */ s8 *unk_064; - /* 0x68 */ s32 *unk_068; - /* 0x6C */ s8 *unk_06C; + /* 0x60 */ u32 *unk_060; + /* 0x64 */ u8 *unk_064; // ptr to a texture + /* 0x68 */ u32 *unk_068; + /* 0x6C */ u8 *unk_06C; // ptr to a texture /* 0x70 */ Gfx *unk_070; // For at least 1 object type this is meant to be a Vtx*. See func_800555BC /* 0x74 */ Vtx *unk_074; /* 0x78 */ s8 unk_078[0x04]; /* 0x7C */ s32 unk_07C; - /* 0x80 */ s32 unk_080; + /* 0x80 */ u16 *unk_080; // unk_080[][4]? /* 0x84 */ s16 unk_084[0xA]; /* 0x98 */ u16 unk_098; /* 0x9A */ s16 unk_09A; @@ -48,7 +48,7 @@ typedef struct /* 0xAE */ s16 unk_0AE; /* 0xB0 */ s16 unk_0B0; /* 0xB2 */ Vec3su unk_0B2; - /* 0xB8 */ Vec3s unk_0B8; + /* 0xB8 */ Vec3su unk_0B8; /* 0xBE */ Vec3su unk_0BE; /* 0xC4 */ u16 unk_0C4; /* 0xC6 */ u16 unk_0C6; |
