We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c732e59 commit 7b9a8c2Copy full SHA for 7b9a8c2
Source/Managers/MovableMan.cpp
@@ -1368,12 +1368,12 @@ void MovableMan::Update() {
1368
1369
{
1370
auto actorsSeeFuture = g_ThreadMan.GetPriorityThreadPool().parallelize_loop(m_Actors.size(),
1371
- [&](int start, int end) {
1372
- ZoneScopedN("Actors See");
1373
- for (int i = start; i < end; ++i) {
1374
- m_Actors[i]->CastSeeRays();
1375
- }
1376
- });
+ [&](int start, int end) {
+ ZoneScopedN("Actors See");
+ for (int i = start; i < end; ++i) {
+ m_Actors[i]->CastSeeRays();
+ }
+ });
1377
1378
1379
ZoneScopedN("Actors Update");
0 commit comments