diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-11-21 18:52:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-21 15:52:16 -0800 |
| commit | e2fddadf320e8d35cbb3542645122e086efbfe9f (patch) | |
| tree | f0e11b2955fd092ad3022c192aed36bddd77fb48 /include/d/actor | |
| parent | 31621c3daccccc0a582eceafec7e373d872f072a (diff) | |
Misc matches (#2845)
* Misc debug matches
* Fix d_map weak function order
* Remove old nonmatching comments
* d_menu_dmap and JASAudioThread OK, fix weak func order and rodata alignment
* More misc matches
Diffstat (limited to 'include/d/actor')
| -rw-r--r-- | include/d/actor/d_a_obj_mirror_6pole.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/include/d/actor/d_a_obj_mirror_6pole.h b/include/d/actor/d_a_obj_mirror_6pole.h index b02aa94e20..59d106e582 100644 --- a/include/d/actor/d_a_obj_mirror_6pole.h +++ b/include/d/actor/d_a_obj_mirror_6pole.h @@ -50,18 +50,11 @@ public: dComIfGs_isEventBit(dSv_event_flag_c::saveBitLabels[354]); } - void setAction(Mode_e i_action) { - mMode = i_action; - mAction = ActionTable[mMode]; + inline void setAction(Mode_e i_action); + inline void callInit(); + inline void callExecute(); - callInit(); - } - - void callInit() { (this->*mAction[0])(); } - - void callExecute() { (this->*mAction[1])(); } - - static actionFunc ActionTable[][2]; + static const actionFunc ActionTable[][2]; private: /* 0x568 */ J3DModel* mpModel; |
