mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-06 10:43:24 -05:00
Fix String struct
This commit is contained in:
parent
16b091058e
commit
c3ef2ae6c9
BIN
charmap.txt
Normal file
BIN
charmap.txt
Normal file
Binary file not shown.
|
|
@ -4,5 +4,6 @@
|
|||
#include "nitro/types.h"
|
||||
|
||||
void * memset(void *, int, u32);
|
||||
void * memcpy(void *, const void *, u32);
|
||||
|
||||
#endif //GUARD_MWC_STRING_H
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user