diff options
| author | Pheenoh <pheenoh@gmail.com> | 2022-12-27 22:45:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-27 22:45:07 -0700 |
| commit | 0b97dfb6e59f859f14cab2df44baddce64dd293d (patch) | |
| tree | ffe2493ed4201bef2315a00cd932c6573d0a6840 /include | |
| parent | 7cac806b68026956bc4e6d143b8c6c7e182ea58a (diff) | |
f_op_camera full match (#225)
Diffstat (limited to 'include')
| -rw-r--r-- | include/f_op/f_op_camera.h | 4 | ||||
| -rw-r--r-- | include/f_pc/f_pc_leaf.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/f_op/f_op_camera.h b/include/f_op/f_op_camera.h index f857af2a0d..99336008ce 100644 --- a/include/f_op/f_op_camera.h +++ b/include/f_op/f_op_camera.h @@ -2,7 +2,9 @@ #define F_F_OP_CAMERA_H_ #include "f_op/f_op_camera_mng.h" + static s32 fopCam_Draw(camera_class* param_1); -static void fopCam_Execute(camera_class* pCamera); +static int fopCam_Execute(camera_class* pCamera); int fopCam_IsDelete(camera_class* pCamera); + #endif
\ No newline at end of file diff --git a/include/f_pc/f_pc_leaf.h b/include/f_pc/f_pc_leaf.h index c81df8d181..05b85796ab 100644 --- a/include/f_pc/f_pc_leaf.h +++ b/include/f_pc/f_pc_leaf.h @@ -25,6 +25,9 @@ typedef struct leaf_process_profile_definition { /* 0x28 */ int field_0x28; /* 0x2C */ u8 field_0x2c; /* 0x2D */ u8 field_0x2d; + /* 0x2E */ u8 field_0x2e[0x2]; // extended from here to end to make fopCam_Create match. might be wrong + /* 0x30 */ u8 field_0x30[0xc]; + /* 0x3C */ leafdraw_method_class* mMethods; } leaf_process_profile_definition; s32 fpcLf_GetPriority(const leafdraw_class* pLeaf); |
