summaryrefslogtreecommitdiff
path: root/src/quest_log_player.c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-03-20 16:44:16 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-03-20 16:44:16 -0400
commit95c7e3d067b7ac8e6cb8ef76f58713b0c8b128ec (patch)
treee65a787459bcd091537e250c4e5640f67b69228c /src/quest_log_player.c
parent301ef72cf8f3fa38a732fbd7c63d2b6b041f3f13 (diff)
Update player avatar state enums
Diffstat (limited to 'src/quest_log_player.c')
-rw-r--r--src/quest_log_player.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quest_log_player.c b/src/quest_log_player.c
index 951273639..4dcb13af2 100644
--- a/src/quest_log_player.c
+++ b/src/quest_log_player.c
@@ -125,7 +125,7 @@ static void Task_QLFishMovement(u8 taskId)
if (!(gPlayerAvatar.flags & PLAYER_AVATAR_FLAG_SURFING))
QL_SetObjectGraphicsId(objectEvent, GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_GFX_NORMAL));
else
- QL_SetObjectGraphicsId(objectEvent, GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_GFX_SURF));
+ QL_SetObjectGraphicsId(objectEvent, GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_GFX_RIDE));
ObjectEventTurn(objectEvent, objectEvent->movementDirection);
sprite->pos2.x = 0;
sprite->pos2.y = 0;
@@ -143,7 +143,7 @@ static void QL_GfxTransition_StartSurf(void)
if (!(gPlayerAvatar.flags & PLAYER_AVATAR_FLAG_SURFING))
{
- QL_SetObjectGraphicsId(objectEvent, GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_GFX_SURF));
+ QL_SetObjectGraphicsId(objectEvent, GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_GFX_RIDE));
ObjectEventTurn(objectEvent, objectEvent->movementDirection);
SetPlayerAvatarStateMask(PLAYER_AVATAR_FLAG_SURFING);
gFieldEffectArguments[0] = objectEvent->currentCoords.x;