diff options
| author | roeming <brother64youyou@gmail.com> | 2026-02-20 05:48:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-20 02:48:29 -0800 |
| commit | 0558bde1e61374f5a1b54453f07fe6cc15525bc1 (patch) | |
| tree | c1ba397dbde72c71a58a0f15e895aad540b25768 /src/d/actor/d_a_obj_pillar.cpp | |
| parent | 95c3626771d589bb8323eb81cf740ecd23e379b5 (diff) | |
Big cast cleanup (#3076)
* Big cast cleanup
* fix for name conflict
* rename header
* rename cast macros
* fix rename mistake
---------
Co-authored-by: roeming <roeming@users.noreply.github.com>
Diffstat (limited to 'src/d/actor/d_a_obj_pillar.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_pillar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/actor/d_a_obj_pillar.cpp b/src/d/actor/d_a_obj_pillar.cpp index 80f0eb6dee..24064df752 100644 --- a/src/d/actor/d_a_obj_pillar.cpp +++ b/src/d/actor/d_a_obj_pillar.cpp @@ -428,7 +428,7 @@ int daPillar_c::Execute(Mtx** param_0) { } if (shape_angle.x != 0) { - mRotY += (s16)(mShakeData.mSpeedY + (0x300 / shape_angle.x)); + ANGLE_ADD(mRotY, mShakeData.mSpeedY + (0x300 / shape_angle.x)); } *param_0 = &mBgMtx; |
