diff options
| author | Léo Lam <leo@leolam.fr> | 2020-09-26 21:03:04 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-09-26 21:03:24 +0200 |
| commit | 26baae29de4bcd2d3c847285e37b52d47d2b73e6 (patch) | |
| tree | 2d159d3971a2aa0b455c7de5e7681a9635bbea27 /src | |
| parent | b8eeb70da3e13feff16ca9ef34c518131c363045 (diff) | |
ksys/frm: Fix RootTaskParam struct layout
Diffstat (limited to 'src')
| -rw-r--r-- | src/KingSystem/Framework/frmRootTaskParam.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/KingSystem/Framework/frmRootTaskParam.h b/src/KingSystem/Framework/frmRootTaskParam.h index 49adb85c..f65beb64 100644 --- a/src/KingSystem/Framework/frmRootTaskParam.h +++ b/src/KingSystem/Framework/frmRootTaskParam.h @@ -16,8 +16,9 @@ public: RootTaskParam() = default; - u16 _8 = 1; - u8 _a = 1; + bool _8 = true; + bool _9 = false; + bool _a = true; void* _10 = nullptr; void* _18 = nullptr; sead::SafeString app_name; @@ -34,6 +35,7 @@ public: u32 heap_size = 0; u32 constant_c = 0; u32 constant_d = 0; + u32 _dc = 0; }; KSYS_CHECK_SIZE_NX150(RootTaskParam::ThreadIdArray, 0x60); KSYS_CHECK_SIZE_NX150(RootTaskParam, 0xe0); |
