diff options
| author | fig02 <fig02srl@gmail.com> | 2024-06-21 19:04:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-21 19:04:06 -0400 |
| commit | e4eb5e27b375355202e228f2d3339a2439f68914 (patch) | |
| tree | bd8d67ab0f37ae1e388760f5881a1dc51fd81a6c /src/code/z_player_lib.c | |
| parent | 38921684a5b8e27218536bfcfa90be9dd664c1fb (diff) | |
Rename `ANIM_FLAG_0` to `ANIM_FLAG_UPDATE_XZ` (#1964)
* rename anim flag 0
* review
* missed a word
Diffstat (limited to 'src/code/z_player_lib.c')
| -rw-r--r-- | src/code/z_player_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/z_player_lib.c b/src/code/z_player_lib.c index 77f0cd035..391407644 100644 --- a/src/code/z_player_lib.c +++ b/src/code/z_player_lib.c @@ -1125,7 +1125,8 @@ s32 Player_OverrideLimbDrawGameplayCommon(PlayState* play, s32 limbIndex, Gfx** sCurBodyPartPos = &this->bodyPartsPos[0] - 1; if (!LINK_IS_ADULT) { - if (!(this->skelAnime.moveFlags & ANIM_FLAG_PLAYER_2) || (this->skelAnime.moveFlags & ANIM_FLAG_0)) { + if (!(this->skelAnime.moveFlags & ANIM_FLAG_PLAYER_2) || + (this->skelAnime.moveFlags & ANIM_FLAG_UPDATE_XZ)) { pos->x *= 0.64f; pos->z *= 0.64f; } |
