diff options
Diffstat (limited to 'source/game/StarWorldClient.cpp')
-rw-r--r-- | source/game/StarWorldClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/StarWorldClient.cpp b/source/game/StarWorldClient.cpp index 486105a..d1c9390 100644 --- a/source/game/StarWorldClient.cpp +++ b/source/game/StarWorldClient.cpp @@ -1452,13 +1452,13 @@ void WorldClient::lightingMain() { return; if (m_renderData) { - int64_t start = Time::monotonicMilliseconds(); + int64_t start = Time::monotonicMicroseconds(); lightingTileGather(); m_lightingCalculator.calculate(m_renderData->lightMap); m_renderData = nullptr; - LogMap::set("render_light_calc", strf("{}ms", Time::monotonicMilliseconds() - start)); + LogMap::set("render_world_async_lighting_calc_time", strf(u8"{:05d}s", Time::monotonicMicroseconds() - start)); } m_lightingCond.wait(m_lightingMutex); |