diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-12 17:14:10 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-12 17:14:10 -0400 |
| commit | e580412bcf9d2f0d295f414860375e7d1bb90c2b (patch) | |
| tree | fd97dc96b186c9a82c2b8cb6de3c54650d71b6e5 /include/d | |
| parent | e70562699f4bc5266409d7a32372a4df4e0accd6 (diff) | |
Fix missing returns and other warnings
Diffstat (limited to 'include/d')
| -rw-r--r-- | include/d/actor/d_a_fm.h | 4 | ||||
| -rw-r--r-- | include/d/actor/d_a_npc_zl1.h | 1 | ||||
| -rw-r--r-- | include/d/actor/d_a_tag_kk1.h | 6 | ||||
| -rw-r--r-- | include/d/d_file_error.h | 1 |
4 files changed, 8 insertions, 4 deletions
diff --git a/include/d/actor/d_a_fm.h b/include/d/actor/d_a_fm.h index b3f51eec..675079b7 100644 --- a/include/d/actor/d_a_fm.h +++ b/include/d/actor/d_a_fm.h @@ -3,6 +3,8 @@ #include "f_op/f_op_actor.h" #include "c/c_damagereaction.h" +#include "d/d_path.h" +#include "d/d_bg_s_lin_chk.h" class daFm_c : public fopEn_enemy_c { public: @@ -22,7 +24,7 @@ public: bool jntHitCreateHeap(); BOOL _pathMove(cXyz*, cXyz*, cXyz*); fopAc_ac_c* searchNearOtherActor(fopAc_ac_c*); - bool searchNearFm(fopAc_ac_c*); + void* searchNearFm(fopAc_ac_c*); void moveRndBack(); void moveRndEscape(); void spAttackVJump(); diff --git a/include/d/actor/d_a_npc_zl1.h b/include/d/actor/d_a_npc_zl1.h index 79859320..f8a35227 100644 --- a/include/d/actor/d_a_npc_zl1.h +++ b/include/d/actor/d_a_npc_zl1.h @@ -2,6 +2,7 @@ #define D_A_NPC_ZL1_H #include "d/d_npc.h" +#include "d/d_particle.h" class J3DMaterial; class J3DNode; diff --git a/include/d/actor/d_a_tag_kk1.h b/include/d/actor/d_a_tag_kk1.h index bea93b76..4c04c41d 100644 --- a/include/d/actor/d_a_tag_kk1.h +++ b/include/d/actor/d_a_tag_kk1.h @@ -7,9 +7,9 @@ class daTag_Kk1_c : public fopNpc_npc_c { public: BOOL createInit(); - bool _draw(); - bool _execute(); - bool _delete(); + BOOL _draw(); + BOOL _execute(); + BOOL _delete(); cPhs_State _create(); public: diff --git a/include/d/d_file_error.h b/include/d/d_file_error.h index ce2670e8..5cae62c7 100644 --- a/include/d/d_file_error.h +++ b/include/d/d_file_error.h @@ -10,6 +10,7 @@ #include "d/d_drawlist.h" #include "d/d_lib.h" #include "f_op/f_op_msg_mng.h" +#include "m_Do/m_Do_hostIO.h" class dFe_HIO_c : public JORReflexible { public: |
