diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-11-28 14:29:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-28 11:29:09 -0800 |
| commit | c974c979ee2c43d344b9b02826ecc3467bccdbf3 (patch) | |
| tree | 6be32184cd388c3ed95fae0c22ddf85236715b2a /include | |
| parent | ff550da0b2f3aef1a7434e5360c169b0a58fcfaa (diff) | |
d_a_passer_mng OK (#2885)
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/actor/d_a_passer_mng.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/d/actor/d_a_passer_mng.h b/include/d/actor/d_a_passer_mng.h index c48a572384..778530d336 100644 --- a/include/d/actor/d_a_passer_mng.h +++ b/include/d/actor/d_a_passer_mng.h @@ -2,6 +2,7 @@ #define D_A_PASSER_MNG_H #include "SSystem/SComponent/c_lib.h" +#include "d/d_kankyo.h" #include "f_op/f_op_actor_mng.h" class dPath; @@ -28,7 +29,7 @@ public: u8 getIntervalTime() { return fopAcM_GetParam(this) >> 24; } int getStartTime() { return (fopAcM_GetParam(this) >> 8) & 0xff; } u8 getEndTime() { return (fopAcM_GetParam(this) >> 16) & 0xff; } - u8 getMaxNum() { return shape_angle.x; } + u8 getMaxNum() { return shape_angle.x & 0xFF; } u8 getGroupNo() { return (shape_angle.x >> 8) & 0xff; } int getTimeHour() { |
