Fix String struct

This commit is contained in:
PikalaxALT 2020-06-20 13:15:58 -04:00
parent 16b091058e
commit c3ef2ae6c9
3 changed files with 4 additions and 3 deletions

BIN
charmap.txt Normal file

Binary file not shown.

View File

@ -4,5 +4,6 @@
#include "nitro/types.h"
void * memset(void *, int, u32);
void * memcpy(void *, const void *, u32);
#endif //GUARD_MWC_STRING_H

View File

@ -3,11 +3,11 @@
struct String
{
u16 len;
u16 pos;
u16 maxsize;
u16 size;
u32 magic;
u16 unk8;
u16 data[1];
u8 padding[2];
};
struct String * String_ctor(u32 count, u32 heap_id);