From 7f659137622d01326924ec06e50feaf0411fce9e Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Mon, 3 Jul 2023 16:26:42 +1000 Subject: Use more portable encoding for Unicode character in debug strfs --- source/rendering/StarWorldPainter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/rendering/StarWorldPainter.cpp') diff --git a/source/rendering/StarWorldPainter.cpp b/source/rendering/StarWorldPainter.cpp index 30ecfb7..9a93365 100644 --- a/source/rendering/StarWorldPainter.cpp +++ b/source/rendering/StarWorldPainter.cpp @@ -72,7 +72,7 @@ void WorldPainter::render(WorldRenderData& renderData, function lightWai if (lightWaiter) { auto start = Time::monotonicMicroseconds(); 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) { -- cgit v1.2.3