Skip to content

Commit 60f8261

Browse files
committed
Fixed indentation
1 parent bcd13ae commit 60f8261

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Source/Managers/MovableMan.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,11 +1384,11 @@ void MovableMan::Update() {
13841384
[&](int start, int end) {
13851385
ZoneScopedN("Actors See");
13861386
for (int i = start; i < end; ++i) {
1387-
// TODO - this null check really shouldn't be required. There's almost definitely an issue where the actor update can somehow fuck with this mid-update
1388-
// this is VERY bad, and needs investigation!
1389-
if (m_Actors[i]) {
1390-
m_Actors[i]->CastSeeRays();
1391-
}
1387+
// TODO - this null check really shouldn't be required. There's almost definitely an issue where the actor update can somehow fuck with this mid-update
1388+
// this is VERY bad, and needs investigation!
1389+
if (m_Actors[i]) {
1390+
m_Actors[i]->CastSeeRays();
1391+
}
13921392
}
13931393
});
13941394

0 commit comments

Comments
 (0)