diff options
author | red031000 <rubenru09@aol.com> | 2020-06-20 21:25:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 21:25:34 +0100 |
commit | 7e6562f747a773ef3ad764c6d0b6b1f2e7d6cfc6 (patch) | |
tree | 24e1bb3e1a14991110255665aee09957c9306a0f /include/string16.h | |
parent | 863b09f18dca59864a95cc72afdaac9b13332d13 (diff) | |
parent | e9e192ce20e2f863a836c3ee9ab364921d068116 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'include/string16.h')
-rw-r--r-- | include/string16.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/string16.h b/include/string16.h index 91888a7b..71880020 100644 --- a/include/string16.h +++ b/include/string16.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); |