diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-11-24 20:35:45 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-11-24 20:35:45 +1100 |
commit | 994b0fe3cff39a2640d931aa3677f2474863cd47 (patch) | |
tree | 804f5d051873aa48c65224dbd14a36a11654a3ca /source/client/StarClientApplication.cpp | |
parent | de53f8c7d73bcd3e2aab57e56f337818fd11ce92 (diff) |
Fix TestUniverse
Diffstat (limited to 'source/client/StarClientApplication.cpp')
-rw-r--r-- | source/client/StarClientApplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/StarClientApplication.cpp b/source/client/StarClientApplication.cpp index 19ea9e0..6c891c2 100644 --- a/source/client/StarClientApplication.cpp +++ b/source/client/StarClientApplication.cpp @@ -418,7 +418,7 @@ void ClientApplication::render() { LogMap::set("client_render_world_client", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - clientStart)); auto paintStart = Time::monotonicMicroseconds(); - m_worldPainter->render(m_renderData, [&]() { worldClient->waitForLighting(); }); + m_worldPainter->render(m_renderData, [&]() { worldClient->waitForLighting(&m_renderData.lightMap); }); LogMap::set("client_render_world_painter", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - paintStart)); LogMap::set("client_render_world_total", strf(u8"{:05d}\u00b5s", Time::monotonicMicroseconds() - totalStart)); } |