1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 03:35:09 +01:00

Rename WalkingFrameNum to WalkingAnimationFrameNum

This commit is contained in:
Aaron van Geffen
2024-09-22 16:10:04 +02:00
parent 2edf8b472a
commit ee7bb61bb0
11 changed files with 20 additions and 20 deletions

View File

@@ -6739,7 +6739,7 @@ void Guest::SetSpriteType(PeepSpriteType new_sprite_type)
SpriteType = new_sprite_type;
ActionSpriteImageOffset = 0;
WalkingFrameNum = 0;
WalkingAnimationFrameNum = 0;
if (IsActionInterruptable())
Action = PeepActionType::Walking;
@@ -7125,7 +7125,7 @@ Guest* Guest::Generate(const CoordsXYZ& coords)
peep->Action = PeepActionType::Walking;
peep->SpecialSprite = 0;
peep->ActionSpriteImageOffset = 0;
peep->WalkingFrameNum = 0;
peep->WalkingAnimationFrameNum = 0;
peep->AnimationType = PeepAnimationType::None;
peep->PeepFlags = 0;
peep->FavouriteRide = RideId::GetNull();