1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 16:24:35 +01:00

Rename format_string(2) and is_user_string_id() (#19178)

Co-authored-by: duncanspumpkin <duncans_pumpkin@hotmail.co.uk>
This commit is contained in:
Michael Steenbeek
2023-01-17 09:59:07 +01:00
committed by GitHub
parent 76b918e7ed
commit bf5f7e8e71
27 changed files with 56 additions and 56 deletions

View File

@@ -461,7 +461,7 @@ static void BenchgfxRenderScreenshots(const char* inputPath, std::unique_ptr<ICo
const double average = totalTime / static_cast<double>(totalRenderCount);
const auto engineStringId = DrawingEngineStringIds[EnumValue(DrawingEngine::Software)];
const auto engineName = format_string(engineStringId, nullptr);
const auto engineName = FormatStringID(engineStringId, nullptr);
std::printf("Engine: %s\n", engineName.c_str());
std::printf("Render Count: %u\n", totalRenderCount);
for (ZoomLevel zoom{ 0 }; zoom < ZoomLevel::max(); zoom++)