mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +01:00
@@ -2235,7 +2235,7 @@ namespace OpenRCT2::Ui::Windows
|
||||
}
|
||||
|
||||
// Sort the rides alphabetically
|
||||
std::stable_sort(_rideableRides.begin(), _rideableRides.end(), [](const RideId& a, const RideId& b) {
|
||||
std::sort(_rideableRides.begin(), _rideableRides.end(), [](const RideId& a, const RideId& b) {
|
||||
return String::compare(GetRideString(a), GetRideString(b), false) < 0;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user