mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-02-21 11:43:37 +01:00
Renamed sub_808B980 -> PlayerWheelieInPlace
This commit is contained in:
parent
7eaabab3f0
commit
1472a3a7d4
@ -52,7 +52,7 @@ u8 GetPlayerAvatarFlags(void);
|
|||||||
void sub_808B578(void);
|
void sub_808B578(void);
|
||||||
u8 GetFRLGAvatarGraphicsIdByGender(u8);
|
u8 GetFRLGAvatarGraphicsIdByGender(u8);
|
||||||
u8 GetRSAvatarGraphicsIdByGender(u8);
|
u8 GetRSAvatarGraphicsIdByGender(u8);
|
||||||
void sub_808B980(u8 direction);
|
void PlayerWheelieInPlace(u8 direction);
|
||||||
void sub_808B9BC(u8 direction);
|
void sub_808B9BC(u8 direction);
|
||||||
void sub_808B9A4(u8 direction);
|
void sub_808B9A4(u8 direction);
|
||||||
void sub_808C1B4(u8 direction);
|
void sub_808C1B4(u8 direction);
|
||||||
|
@ -696,7 +696,7 @@ static void AcroBikeTransition_WheelieMoving(u8 direction)
|
|||||||
if (MetatileBehavior_IsBumpySlope(playerObjEvent->currentMetatileBehavior))
|
if (MetatileBehavior_IsBumpySlope(playerObjEvent->currentMetatileBehavior))
|
||||||
PlayerIdleWheelie(direction);
|
PlayerIdleWheelie(direction);
|
||||||
else
|
else
|
||||||
sub_808B980(direction); //hit wall?
|
PlayerWheelieInPlace(direction); //hit wall?
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -730,7 +730,7 @@ static void AcroBikeTransition_WheelieRisingMoving(u8 direction)
|
|||||||
if (MetatileBehavior_IsBumpySlope(playerObjEvent->currentMetatileBehavior))
|
if (MetatileBehavior_IsBumpySlope(playerObjEvent->currentMetatileBehavior))
|
||||||
PlayerIdleWheelie(direction);
|
PlayerIdleWheelie(direction);
|
||||||
else
|
else
|
||||||
sub_808B980(direction); //hit wall?
|
PlayerWheelieInPlace(direction); //hit wall?
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1079,7 +1079,7 @@ void PlayerAcroTurnJump(u8 direction)
|
|||||||
PlayerSetAnimId(GetJumpInPlaceTurnAroundMovementAction(direction), 1);
|
PlayerSetAnimId(GetJumpInPlaceTurnAroundMovementAction(direction), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void sub_808B980(u8 direction)
|
void PlayerWheelieInPlace(u8 direction)
|
||||||
{
|
{
|
||||||
PlaySE(SE_WALL_HIT);
|
PlaySE(SE_WALL_HIT);
|
||||||
PlayerSetAnimId(GetAcroWheelieInPlaceDirectionMovementAction(direction), 2);
|
PlayerSetAnimId(GetAcroWheelieInPlaceDirectionMovementAction(direction), 2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user