diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
| commit | 9e29fd3c68e471560b8910dcde3028b2a4d487cd (patch) | |
| tree | 28ef085323ebdb56b7ba7a44ac7ff2bfff3e8190 /src/d/actor/d_a_obj_timer.cpp | |
| parent | 202851599fb67079504af37fe0f5b944bfa51e19 (diff) | |
More warning cleanup
Diffstat (limited to 'src/d/actor/d_a_obj_timer.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_obj_timer.cpp b/src/d/actor/d_a_obj_timer.cpp index 92c796f1..03066701 100644 --- a/src/d/actor/d_a_obj_timer.cpp +++ b/src/d/actor/d_a_obj_timer.cpp @@ -84,8 +84,8 @@ void daObjTimer::Act_c::mode_count() { /* 00000304-00000394 .text _execute__Q210daObjTimer5Act_cFv */ bool daObjTimer::Act_c::_execute() { static ModeFunc mode_proc[] = { - &mode_wait, - &mode_count, + &Act_c::mode_wait, + &Act_c::mode_count, }; (this->*mode_proc[mMode])(); |
