1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 14:54:30 +01:00

Update Ride struct to new codestyle

This commit is contained in:
Michael Steenbeek
2025-03-09 00:26:25 +01:00
committed by GitHub
parent fd148356c8
commit 05b64985f4
120 changed files with 2670 additions and 2677 deletions

View File

@@ -163,7 +163,7 @@ namespace OpenRCT2::Profiling
double avg = 0.0;
if (func->GetCallCount() > 0)
avg = func->GetTotalTime() / func->GetCallCount();
avg = func->getTotalTime() / func->GetCallCount();
out << avg << "\n";
}