Renamed sub_808B980 -> PlayerWheelieInPlace
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
+2
-2
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user