1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Move RideRatingsUpdateAll into namespace

This commit is contained in:
Tulio Leao
2025-08-17 06:19:01 -03:00
parent ad375907b1
commit 74e329c015
3 changed files with 3 additions and 3 deletions

View File

@@ -318,7 +318,7 @@ namespace OpenRCT2
}
ResearchUpdate();
RideRatingsUpdateAll();
RideRating::UpdateAll();
RideMeasurementsUpdate();
News::UpdateCurrentItem();

View File

@@ -193,7 +193,7 @@ void OpenRCT2::RideRating::UpdateRide(const Ride& ride)
*
* rct2: 0x006B5A2A
*/
void RideRatingsUpdateAll()
void OpenRCT2::RideRating::UpdateAll()
{
PROFILED_FUNCTION();

View File

@@ -68,9 +68,9 @@ namespace OpenRCT2::RideRating
{
void ResetUpdateStates();
void UpdateRide(const Ride& ride);
void UpdateAll();
} // namespace OpenRCT2::RideRating
void RideRatingsUpdateAll();
// Special Track Element Adjustment functions for RTDs
void SpecialTrackElementRatingsAjustment_Default(const Ride& ride, int32_t& excitement, int32_t& intensity, int32_t& nausea);