diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-03 16:26:42 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-03 16:26:42 +1000 |
commit | 7f659137622d01326924ec06e50feaf0411fce9e (patch) | |
tree | 92c44afa6ae8676d524926c9efc0054886579655 /source/rendering/StarWorldPainter.cpp | |
parent | 11e00a8dedd8f430f6528d2852169d134c17367a (diff) |
Use more portable encoding for Unicode character in debug strfs
Diffstat (limited to 'source/rendering/StarWorldPainter.cpp')
-rw-r--r-- | source/rendering/StarWorldPainter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<void()> 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) { |