fix a crash introduced with the warning changed.
This commit is contained in:
parent
a0aec1d33a
commit
8273e34eba
|
|
@ -999,13 +999,10 @@ static PhysicsVertexData CreateRectanglePolygon(Vector2 pos, Vector2 size)
|
||||||
void UpdatePhysicsStep(void)
|
void UpdatePhysicsStep(void)
|
||||||
{
|
{
|
||||||
// Clear previous generated collisions information
|
// Clear previous generated collisions information
|
||||||
if (physicsManifoldsCount > 0)
|
for (int i = (int)physicsManifoldsCount - 1; i >= 0; i--)
|
||||||
{
|
{
|
||||||
for (unsigned int i = physicsManifoldsCount - 1; i >= 0; i--)
|
PhysicsManifold manifold = contacts[i];
|
||||||
{
|
if (manifold != NULL) DestroyPhysicsManifold(manifold);
|
||||||
PhysicsManifold manifold = contacts[i];
|
|
||||||
if (manifold != NULL) DestroyPhysicsManifold(manifold);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reset physics bodies grounded state
|
// Reset physics bodies grounded state
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user