diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-01-11 17:20:45 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-01-11 17:20:45 -0500 |
| commit | ca6bebcb4b14fa7b9c3bb1ba5a15f592c8dde92e (patch) | |
| tree | 03e34b3d39262d1a6ae0faebc6ccc0cfde89847b /src/d/actor/d_a_ghostship.cpp | |
| parent | 3816b8d8f0d8dc33f8fd77d2f9c02b45558dbb93 (diff) | |
Add more actor mode enums
Diffstat (limited to 'src/d/actor/d_a_ghostship.cpp')
| -rw-r--r-- | src/d/actor/d_a_ghostship.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_ghostship.cpp b/src/d/actor/d_a_ghostship.cpp index 00166547..6240f984 100644 --- a/src/d/actor/d_a_ghostship.cpp +++ b/src/d/actor/d_a_ghostship.cpp @@ -90,7 +90,7 @@ void daGhostship_c::pathMove() { /* 000004CC-000004D8 .text modeWaitInit__13daGhostship_cFv */ void daGhostship_c::modeWaitInit() { - mMode = 0; + mMode = MODE_WAIT; } /* 000004D8-000004DC .text modeWait__13daGhostship_cFv */ @@ -128,7 +128,7 @@ BOOL daGhostship_c::_pathMove(cXyz* curPos, cXyz* p_curPntPos, cXyz* p_nextPntPo /* 00000770-0000077C .text modePathMoveInit__13daGhostship_cFv */ void daGhostship_c::modePathMoveInit() { - mMode = 2; + mMode = MODE_PATH_MOVE; } /* 0000077C-000007D0 .text modePathMove__13daGhostship_cFv */ |
