diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2023-07-24 01:30:24 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-23 15:30:24 -0700 |
| commit | cb8bf4a4892ece541bf57bcd82accbf1af581f1f (patch) | |
| tree | 702e7af1963aca8755f9fc66809917aac99a53da /include/JSystem/JStudio | |
| parent | 6d9f00cb46619aad3a2b52ff13263506c107af92 (diff) | |
More JSystem borrowing (#383)
Diffstat (limited to 'include/JSystem/JStudio')
| -rw-r--r-- | include/JSystem/JStudio/JStudio/fvb-data-parse.h | 1 | ||||
| -rw-r--r-- | include/JSystem/JStudio/JStudio/stb-data-parse.h | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/JSystem/JStudio/JStudio/fvb-data-parse.h b/include/JSystem/JStudio/JStudio/fvb-data-parse.h index 93e6ba3b11..16b3627827 100644 --- a/include/JSystem/JStudio/JStudio/fvb-data-parse.h +++ b/include/JSystem/JStudio/JStudio/fvb-data-parse.h @@ -39,6 +39,7 @@ public: /* 0x04 */ u32 u32Size; /* 0x08 */ u32 u32Type; /* 0x0C */ const void* pContent; + /* 0x10 */ const void* next; }; TParse_TParagraph(const void* content) : TParseData_aligned<4>(content) {} diff --git a/include/JSystem/JStudio/JStudio/stb-data-parse.h b/include/JSystem/JStudio/JStudio/stb-data-parse.h index b21486fcfb..3c99071395 100644 --- a/include/JSystem/JStudio/JStudio/stb-data-parse.h +++ b/include/JSystem/JStudio/JStudio/stb-data-parse.h @@ -65,10 +65,10 @@ public: struct TParse_TParagraph_data : public TParseData_aligned<4> { struct TData { - /* 0x00 */ u8 _0; - /* 0x04 */ u32 _4; + /* 0x00 */ u8 status; + /* 0x04 */ u32 dataSize; /* 0x08 */ u32 _8; - /* 0x0C */ const void* _c; + /* 0x0C */ const void* fileCount; /* 0x10 */ const void* _10; }; |
