diff options
| author | jdflyer <jdflyer10@gmail.com> | 2022-01-17 20:19:43 -0700 |
|---|---|---|
| committer | jdflyer <jdflyer10@gmail.com> | 2022-01-17 20:19:43 -0700 |
| commit | 252c5daba7a1517f535aefac068e69b22e7b8d7f (patch) | |
| tree | ae39c27fe64d9fee2aa64db986a03aaeff2d16b6 /include | |
| parent | ecc987f34cff6397e9785063effcc5f2e7dc33c5 (diff) | |
Formatting fixes
Diffstat (limited to 'include')
| -rw-r--r-- | include/DynamicLink.h | 29 | ||||
| -rw-r--r-- | include/d/map/d_map_path.h | 10 | ||||
| -rw-r--r-- | include/d/map/d_map_path_dmap.h | 2 |
3 files changed, 21 insertions, 20 deletions
diff --git a/include/DynamicLink.h b/include/DynamicLink.h index 633ba0abf8..638eb61937 100644 --- a/include/DynamicLink.h +++ b/include/DynamicLink.h @@ -7,12 +7,13 @@ #include "JSystem/JKernel/JKRFileCache.h" struct DynamicModuleControlBase { - u16 mLinkCount; //0x0 - u16 mDoLinkCount; //0x2 - DynamicModuleControlBase* mPrev; //0x4 - DynamicModuleControlBase* mNext; //0x8 + /* 0x00 */u16 mLinkCount; + /* 0x02 */u16 mDoLinkCount; + /* 0x04 */DynamicModuleControlBase* mPrev; + /* 0x08 */DynamicModuleControlBase* mNext; - /* 802621CC */ virtual ~DynamicModuleControlBase(); //0xC + /* 0x0C */ /*vtable*/ + /* 802621CC */ virtual ~DynamicModuleControlBase(); /* 800188DC */ virtual const char* getModuleName() const; /* 80263210 */ virtual int getModuleSize() const; /* 80263200 */ virtual const char* getModuleTypeString() const; @@ -54,15 +55,15 @@ struct DynamicModuleControl : DynamicModuleControlBase { /* 8026275C */ bool initialize(); /* 80262794 */ static void* callback(void*); - OSModuleInfo* mModule; //0x10 - void* mBss; //0x14 - u32 unk_24; //0x18 - const char* mName; //0x1c - u8 mResourceType; //0x20 - u8 unk_33; //0x21 - u16 mChecksum; //0x22 - s32 mSize; //0x24 - mDoDvdThd_callback_c* mAsyncLoadCallback; //0x28 + /* 0x10 */OSModuleInfo* mModule; + /* 0x14 */void* mBss; + /* 0x18 */u32 unk_24; + /* 0x1c */const char* mName; + /* 0x20 */u8 mResourceType; + /* 0x21 */u8 unk_33; + /* 0x22 */u16 mChecksum; + /* 0x24 */s32 mSize; + /* 0x28 */mDoDvdThd_callback_c* mAsyncLoadCallback; static u32 sAllocBytes; static JKRArchive* sArchive; diff --git a/include/d/map/d_map_path.h b/include/d/map/d_map_path.h index e1efd518f8..6aadaabc0c 100644 --- a/include/d/map/d_map_path.h +++ b/include/d/map/d_map_path.h @@ -7,11 +7,11 @@ class dDrawPath_c : public dDlst_base_c { public: struct line_class { - /*0x0*/ u8 unk0; - /*0x1*/ u8 unk1; - /*0x2*/ u8 unk2; - /*0x3*/ u8 unk3; - /*0x4*/ u16* unk4; + /* 0x00 */ u8 unk0; + /* 0x01 */ u8 unk1; + /* 0x02 */ u8 unk2; + /* 0x03 */ u8 unk3; + /* 0x04 */ u16* unk4; }; struct poly_class {}; diff --git a/include/d/map/d_map_path_dmap.h b/include/d/map/d_map_path_dmap.h index d556a2f672..b80b343860 100644 --- a/include/d/map/d_map_path_dmap.h +++ b/include/d/map/d_map_path_dmap.h @@ -78,7 +78,7 @@ public: /* 8003FF14 */ virtual void preDrawPath(); /* 8003FFC4 */ virtual void postDrawPath(); /* 800402C0 */ virtual void isDrawPath(); - /* 8003FE4C */ virtual void getBackColor() const; + /* 8003FE4C */ virtual GXColor* getBackColor() const; /* 800402E0 */ virtual bool getFirstDrawLayerNo(); /* 800402E8 */ virtual void getNextDrawLayerNo(int); /* 800409E0 */ virtual void isDrawIconSingle(dTres_c::data_s const*, int, int, bool, bool, |
