diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-28 18:04:05 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-28 18:04:05 -0500 |
| commit | 5571ec74e4191e00130a1f1c0b3851aaf6478321 (patch) | |
| tree | 84f5b5832175f9fb23c82458690014aa6568753a /src/d/actor/d_a_rd.cpp | |
| parent | fdfb69f055bba89ad820ab142f0776eee2b710f8 (diff) | |
Document the second param to joint callback functions
Diffstat (limited to 'src/d/actor/d_a_rd.cpp')
| -rw-r--r-- | src/d/actor/d_a_rd.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/d/actor/d_a_rd.cpp b/src/d/actor/d_a_rd.cpp index 4914d4b1..2d7f6d88 100644 --- a/src/d/actor/d_a_rd.cpp +++ b/src/d/actor/d_a_rd.cpp @@ -120,8 +120,8 @@ fopAc_ac_c* daRd_c::_searchNearDeadRd(fopAc_ac_c* i_actor) { } /* 0000030C-00000358 .text nodeControl_CB__FP7J3DNodei */ -static BOOL nodeControl_CB(J3DNode* node, int param_1) { - if (!param_1) { +static BOOL nodeControl_CB(J3DNode* node, int calcTiming) { + if (calcTiming == J3DNodeCBCalcTiming_In) { J3DModel* model = j3dSys.getModel(); daRd_c* i_this = reinterpret_cast<daRd_c*>(model->getUserArea()); if (i_this) { @@ -157,8 +157,8 @@ BOOL daRd_c::_nodeControl(J3DNode* node, J3DModel* model) { } /* 00000550-0000059C .text nodeHeadControl_CB__FP7J3DNodei */ -static BOOL nodeHeadControl_CB(J3DNode* node, int param_1) { - if (!param_1) { +static BOOL nodeHeadControl_CB(J3DNode* node, int calcTiming) { + if (calcTiming == J3DNodeCBCalcTiming_In) { J3DModel* model = j3dSys.getModel(); daRd_c* i_this = reinterpret_cast<daRd_c*>(model->getUserArea()); if (i_this) { |
