Use more portable encoding for Unicode character in debug strfs

This commit is contained in:
Kae 2023-07-03 16:26:42 +10:00
parent 11e00a8ded
commit 7f65913762
3 changed files with 7 additions and 7 deletions

View File

@ -389,23 +389,23 @@ void ClientApplication::render() {
auto start = Time::monotonicMicroseconds(); auto start = Time::monotonicMicroseconds();
renderer->switchEffectConfig("world"); renderer->switchEffectConfig("world");
worldClient->render(m_renderData, TilePainter::BorderTileSize); worldClient->render(m_renderData, TilePainter::BorderTileSize);
LogMap::set("render_world_client", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_client", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
start = Time::monotonicMicroseconds(); start = Time::monotonicMicroseconds();
m_worldPainter->render(m_renderData, [&]() { worldClient->waitForLighting(); }); m_worldPainter->render(m_renderData, [&]() { worldClient->waitForLighting(); });
LogMap::set("render_world_painter", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_painter", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
start = Time::monotonicMicroseconds(); start = Time::monotonicMicroseconds();
m_mainInterface->renderInWorldElements(); m_mainInterface->renderInWorldElements();
LogMap::set("render_world_elements", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_elements", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
renderer->switchEffectConfig("default"); renderer->switchEffectConfig("default");
LogMap::set("render_world_total", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_total", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
} }
auto start = Time::monotonicMicroseconds(); auto start = Time::monotonicMicroseconds();
m_mainInterface->render(); m_mainInterface->render();
m_cinematicOverlay->render(); m_cinematicOverlay->render();
LogMap::set("render_interface", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_interface", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
} }
if (!m_errorScreen->accepted()) if (!m_errorScreen->accepted())

View File

@ -1458,7 +1458,7 @@ void WorldClient::lightingMain() {
m_lightingCalculator.calculate(m_renderData->lightMap); m_lightingCalculator.calculate(m_renderData->lightMap);
m_renderData = nullptr; m_renderData = nullptr;
LogMap::set("render_world_async_lighting_calc_time", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_async_lighting_calc_time", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
} }
m_lightingCond.wait(m_lightingMutex); m_lightingCond.wait(m_lightingMutex);

View File

@ -72,7 +72,7 @@ void WorldPainter::render(WorldRenderData& renderData, function<void()> lightWai
if (lightWaiter) { if (lightWaiter) {
auto start = Time::monotonicMicroseconds(); auto start = Time::monotonicMicroseconds();
lightWaiter(); lightWaiter();
LogMap::set("render_world_async_lighting_wait_time", strf(u8"{:05d}µs", Time::monotonicMicroseconds() - start)); LogMap::set("render_world_async_lighting_wait_time", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - start));
} }
if (renderData.isFullbright) { if (renderData.isFullbright) {