Remove unnecessary reset of entities spatial index, coordinates are 3D

This commit is contained in:
ζeh Matt 2024-03-07 01:05:47 +02:00
parent d3b8ad471e
commit 2814662ea8
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
1 changed files with 0 additions and 2 deletions

View File

@ -885,7 +885,6 @@ static void ViewportRotateSingleInternal(WindowBase& w, int32_t direction)
void ViewportRotateSingle(WindowBase* window, int32_t direction)
{
ViewportRotateSingleInternal(*window, direction);
ResetAllSpriteQuadrantPlacements();
}
void ViewportRotateAll(int32_t direction)
@ -898,7 +897,6 @@ void ViewportRotateAll(int32_t direction)
return;
ViewportRotateSingleInternal(*w, direction);
});
ResetAllSpriteQuadrantPlacements();
}
/**