diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-20 20:06:40 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-04-20 20:06:40 -0400 |
| commit | ce8d17ec0835c9679e54dc7a6700c042825352f9 (patch) | |
| tree | 0748434bc0497fce52875a93477a3377afeefdcd /src/d/actor/d_a_npc_os.cpp | |
| parent | 7e77fd23e3f7019d62a89f74bbc448852e166aaf (diff) | |
Add an enum for action button icon status
Diffstat (limited to 'src/d/actor/d_a_npc_os.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_os.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_npc_os.cpp b/src/d/actor/d_a_npc_os.cpp index 342203d5..602c5983 100644 --- a/src/d/actor/d_a_npc_os.cpp +++ b/src/d/actor/d_a_npc_os.cpp @@ -593,9 +593,9 @@ void daNpc_Os_c::playerAction(void* param_1) { setPlayerAction(&daNpc_Os_c::waitPlayerAction, 0); } - dComIfGp_setRStatusForce(7); - dComIfGp_setDoStatus(0x3E); - dComIfGp_setAStatus(0x3E); + dComIfGp_setRStatusForce(dActStts_RETURN_e); + dComIfGp_setDoStatus(dActStts_HIDDEN_e); + dComIfGp_setAStatus(dActStts_HIDDEN_e); (this->*mPlayerAction)(param_1); } |
