mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-27 04:04:17 +01:00
Renamed sub_808C1B4 -> PlayerUseAcroBikeOnBumpySlope
This commit is contained in:
parent
007a038031
commit
9abda59bd1
@ -55,7 +55,7 @@ u8 GetRSAvatarGraphicsIdByGender(u8);
|
|||||||
void PlayerWheelieInPlace(u8 direction);
|
void PlayerWheelieInPlace(u8 direction);
|
||||||
void PlayerWheelieMove(u8 direction);
|
void PlayerWheelieMove(u8 direction);
|
||||||
void PlayerPopWheelieWhileMoving(u8 direction);
|
void PlayerPopWheelieWhileMoving(u8 direction);
|
||||||
void sub_808C1B4(u8 direction);
|
void PlayerUseAcroBikeOnBumpySlope(u8 direction);
|
||||||
void PlayerEndWheelieWhileMoving(u8 direction);
|
void PlayerEndWheelieWhileMoving(u8 direction);
|
||||||
void sub_808D194(void);
|
void sub_808D194(void);
|
||||||
void sub_808D1C8(void);
|
void sub_808D1C8(void);
|
||||||
|
@ -1049,7 +1049,7 @@ void Bike_HandleBumpySlopeJump(void)
|
|||||||
if (MetatileBehavior_IsBumpySlope(tileBehavior))
|
if (MetatileBehavior_IsBumpySlope(tileBehavior))
|
||||||
{
|
{
|
||||||
gPlayerAvatar.acroBikeState = ACRO_STATE_WHEELIE_STANDING;
|
gPlayerAvatar.acroBikeState = ACRO_STATE_WHEELIE_STANDING;
|
||||||
sub_808C1B4(GetPlayerMovementDirection());
|
PlayerUseAcroBikeOnBumpySlope(GetPlayerMovementDirection());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1415,7 +1415,7 @@ void sub_808C15C(u8 direction)
|
|||||||
StartSpriteAnim(&gSprites[gPlayerAvatar.spriteId], GetFishingDirectionAnimNum(direction));
|
StartSpriteAnim(&gSprites[gPlayerAvatar.spriteId], GetFishingDirectionAnimNum(direction));
|
||||||
}
|
}
|
||||||
|
|
||||||
void sub_808C1B4(u8 direction)
|
void PlayerUseAcroBikeOnBumpySlope(u8 direction)
|
||||||
{
|
{
|
||||||
ObjectEventSetGraphicsId(&gObjectEvents[gPlayerAvatar.objectEventId], GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_STATE_ACRO_BIKE));
|
ObjectEventSetGraphicsId(&gObjectEvents[gPlayerAvatar.objectEventId], GetPlayerAvatarGraphicsIdByStateId(PLAYER_AVATAR_STATE_ACRO_BIKE));
|
||||||
StartSpriteAnim(&gSprites[gPlayerAvatar.spriteId], GetAcroWheelieDirectionAnimNum(direction));
|
StartSpriteAnim(&gSprites[gPlayerAvatar.spriteId], GetAcroWheelieDirectionAnimNum(direction));
|
||||||
|
Loading…
Reference in New Issue
Block a user