diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-30 15:54:02 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-30 15:54:02 -0500 |
| commit | a8d10408a2133674d8fc38e27c2f78673c34e448 (patch) | |
| tree | 3951f33c49c248b69a82a9f68422233203d4e712 /src/d/actor/d_a_item.cpp | |
| parent | 421a6bd3df8a8ab172ad13efd32e5249138e7948 (diff) | |
Add return type and static keyword to common actor static funcs
Diffstat (limited to 'src/d/actor/d_a_item.cpp')
| -rw-r--r-- | src/d/actor/d_a_item.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/actor/d_a_item.cpp b/src/d/actor/d_a_item.cpp index c300eee5..d5d3d258 100644 --- a/src/d/actor/d_a_item.cpp +++ b/src/d/actor/d_a_item.cpp @@ -1451,27 +1451,27 @@ BOOL daItem_c::initAction() { } /* 800F8950-800F8970 .text daItem_Draw__FP8daItem_c */ -BOOL daItem_Draw(daItem_c* i_this) { +static BOOL daItem_Draw(daItem_c* i_this) { return i_this->_daItem_draw(); } /* 800F8970-800F8990 .text daItem_Execute__FP8daItem_c */ -BOOL daItem_Execute(daItem_c* i_this) { +static BOOL daItem_Execute(daItem_c* i_this) { return i_this->_daItem_execute(); } /* 800F8990-800F89B0 .text daItem_IsDelete__FP8daItem_c */ -BOOL daItem_IsDelete(daItem_c* i_this) { +static BOOL daItem_IsDelete(daItem_c* i_this) { return i_this->_daItem_isdelete(); } /* 800F89B0-800F89D0 .text daItem_Delete__FP8daItem_c */ -BOOL daItem_Delete(daItem_c* i_this) { +static BOOL daItem_Delete(daItem_c* i_this) { return i_this->_daItem_delete(); } /* 800F89D0-800F89F0 .text daItem_Create__FP10fopAc_ac_c */ -s32 daItem_Create(fopAc_ac_c* i_this) { +static s32 daItem_Create(fopAc_ac_c* i_this) { return ((daItem_c*)i_this)->_daItem_create(); } |
