feat(profile): fix fields

This commit is contained in:
gromchek 2025-09-10 00:40:40 +03:00
parent 8903a37e8b
commit 7f79d5c329

View file

@ -23,11 +23,10 @@ STORM_TS_GROWABLE_ARRAY(CMapAreaTexture);
struct CMapArea struct CMapArea
{ {
void** vtable; void** vtable;
int32_t objectIndex; uint32_t objectIndex;
uint16_t flags; uint16_t flags;
uint16_t pad_0A; uint16_t pad_0A;
int32_t unk_0C; uint32_t unk_0C;
CMapArea* perv; CMapArea* perv;
CMapArea* next; CMapArea* next;
@ -76,12 +75,12 @@ struct CMapArea
struct CMapChunk struct CMapChunk
{ {
void** vtable; void** vtable;
int32_t objectIndex; uint32_t objectIndex;
int32_t unk_08; uint16_t flags;
uint16_t pad_0A;
int32_t TSExplicitList__m_linkoffset_0C; uint32_t unk_0C;
void* TSExplicitList__ptr1_10; CMapChunk* prev;
void* TSExplicitList__ptr2_14; CMapChunk* next;
int32_t TSExplicitList__m_linkoffset_18; int32_t TSExplicitList__m_linkoffset_18;
void* TSExplicitList__ptr1_1C; void* TSExplicitList__ptr1_1C;