diff options
Diffstat (limited to 'include/objects.h')
| -rw-r--r-- | include/objects.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/objects.h b/include/objects.h index 91e5f4cb5..6a0a9b1ae 100644 --- a/include/objects.h +++ b/include/objects.h @@ -23,15 +23,15 @@ typedef struct /* 0x54 */ s32 status; /* 0x58 */ s32 unk_058; /* 0x5C */ s32 unk_05C; - /* 0x60 */ u8 *activeTLUT; - /* 0x64 */ u8 *activeTexture; + /* 0x60 */ const char *activeTLUT; + /* 0x64 */ const char *activeTexture; /** * "list" is something of a misnomer for the names here * they can be pointers to just 1 tlut/texture, but it is common for one or the other * to be a pointer to an array of tluts/textures. **/ /* 0x68 */ u8 *tlutList; // I feel like this should actually be `u8 (*tlutList)[512]`, but that causes mismatches - /* 0x6C */ u8 *textureList; + /* 0x6C */ const char **textureList; /* 0x70 */ Gfx *model; /* 0x74 */ Vtx *vertex; /* 0x78 */ s8 unk_078[0x04]; |
