summaryrefslogtreecommitdiff
path: root/src/bike.c
diff options
context:
space:
mode:
authorEvan <eroelke@gmail.com>2020-05-05 11:00:39 -0600
committerEvan <eroelke@gmail.com>2020-05-05 11:00:39 -0600
commit5a5e68269d3fbf6eb314b8c947a156faa80a1eb2 (patch)
tree9873c18faa8b4ec0aac66cc38057323156004241 /src/bike.c
parentfcb999beea38668efc60ddec8b4f6fbed63cacc5 (diff)
fix PLAYER_AVATAR_FLAG_WATERING define
Diffstat (limited to 'src/bike.c')
-rw-r--r--src/bike.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bike.c b/src/bike.c
index d08a5fe82..e31fd27a4 100644
--- a/src/bike.c
+++ b/src/bike.c
@@ -374,7 +374,7 @@ s16 GetPlayerSpeed(void)
return exp[gPlayerAvatar.bikeFrameCounter];
else if (gPlayerAvatar.flags & PLAYER_AVATAR_FLAG_ACRO_BIKE)
return 3;
- else if (gPlayerAvatar.flags & (PLAYER_AVATAR_FLAG_SURFING | PLAYER_AVATAR_FLAG_WATERING))
+ else if (gPlayerAvatar.flags & (PLAYER_AVATAR_FLAG_SURFING | PLAYER_AVATAR_FLAG_DASH))
return 2;
else
return 1;