diff --git a/src/openrct2/peep/GuestPathfinding.cpp b/src/openrct2/peep/GuestPathfinding.cpp index 092c7f0173..36cad9cf14 100644 --- a/src/openrct2/peep/GuestPathfinding.cpp +++ b/src/openrct2/peep/GuestPathfinding.cpp @@ -1648,7 +1648,7 @@ static int32_t guest_path_find_park_entrance(Peep* peep, uint8_t edges) // If entrance no longer exists, choose a new one if ((peep->PeepFlags & PEEP_FLAGS_PARK_ENTRANCE_CHOSEN) && peep->CurrentRide >= gParkEntrances.size()) { - peep->CurrentRide = 0xFF; + peep->CurrentRide = RIDE_ID_NULL; peep->PeepFlags &= ~(PEEP_FLAGS_PARK_ENTRANCE_CHOSEN); }