fix malloc sizes of HuMemDirectMalloc calls (#579)

This commit is contained in:
Rainchus 2025-04-06 18:53:55 -05:00 committed by GitHub
parent 887cb00c5b
commit 086800b79a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 219 additions and 207 deletions

View file

@ -20,7 +20,6 @@ typedef struct _unkStruct {
HsfVector2f unk1C;
Vec unk24;
float unk30;
float unk34;
} unkStruct;
typedef struct _unkStruct2 {

View file

@ -71,13 +71,13 @@ typedef struct anim_bmp_data {
} AnimBmpData;
typedef struct anim_data {
s16 bankNum;
s16 patNum;
s16 bmpNum;
s16 useNum;
AnimBankData *bank;
AnimPatData *pat;
AnimBmpData *bmp;
} AnimData;
/* 0x00 */ s16 bankNum;
/* 0x02 */ s16 patNum;
/* 0x04 */ s16 bmpNum;
/* 0x06 */ s16 useNum;
/* 0x08 */ AnimBankData *bank;
/* 0x0C */ AnimPatData *pat;
/* 0x10 */ AnimBmpData *bmp;
} AnimData; //sizeof 0x14
#endif
#endif