summaryrefslogtreecommitdiff
path: root/src/code/z_player_lib.c
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2024-09-23 10:07:11 -0400
committerGitHub <noreply@github.com>2024-09-23 10:07:11 -0400
commitbb3848262ddb6a605e8ae1dfacab934b4605790e (patch)
tree7601518e8aa73b06d777327107e9bae755092100 /src/code/z_player_lib.c
parentebd2b8dd506978a14f15ef7fde99d16658762f24 (diff)
Standardize "ActorMovement" over "ActorMove" (#2214)
* ActorMove -> ActorMovement * more move -> movement * ANIM_FLAG_ENABLE_MOVEMENT * format
Diffstat (limited to 'src/code/z_player_lib.c')
-rw-r--r--src/code/z_player_lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/z_player_lib.c b/src/code/z_player_lib.c
index d2642b9ea..2e1a44ae1 100644
--- a/src/code/z_player_lib.c
+++ b/src/code/z_player_lib.c
@@ -1263,14 +1263,14 @@ s32 Player_OverrideLimbDrawGameplayCommon(PlayState* play, s32 limbIndex, Gfx**
sCurBodyPartPos = &this->bodyPartsPos[0] - 1;
if (!LINK_IS_ADULT) {
- if (!(this->skelAnime.moveFlags & ANIM_FLAG_DISABLE_CHILD_ROOT_ADJUSTMENT) ||
- (this->skelAnime.moveFlags & ANIM_FLAG_UPDATE_XZ)) {
+ if (!(this->skelAnime.movementFlags & ANIM_FLAG_DISABLE_CHILD_ROOT_ADJUSTMENT) ||
+ (this->skelAnime.movementFlags & ANIM_FLAG_UPDATE_XZ)) {
pos->x *= 0.64f;
pos->z *= 0.64f;
}
- if (!(this->skelAnime.moveFlags & ANIM_FLAG_DISABLE_CHILD_ROOT_ADJUSTMENT) ||
- (this->skelAnime.moveFlags & ANIM_FLAG_UPDATE_Y)) {
+ if (!(this->skelAnime.movementFlags & ANIM_FLAG_DISABLE_CHILD_ROOT_ADJUSTMENT) ||
+ (this->skelAnime.movementFlags & ANIM_FLAG_UPDATE_Y)) {
pos->y *= 0.64f;
}
}