mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 17:19:00 +00:00
CGlass indices fix
This commit is contained in:
parent
51e7f44433
commit
cf6a9a8341
1 changed files with 1 additions and 1 deletions
|
@ -967,7 +967,7 @@ CGlass::BreakGlassPhysically(CVector pos, float radius)
|
||||||
for ( int32 j = 0; j < col->numTriangles; j++ )
|
for ( int32 j = 0; j < col->numTriangles; j++ )
|
||||||
{
|
{
|
||||||
if ( CCollision::TestSphereTriangle(sphere,
|
if ( CCollision::TestSphereTriangle(sphere,
|
||||||
col->vertices, col->triangles[i], col->trianglePlanes[i]) )
|
col->vertices, col->triangles[j], col->trianglePlanes[j]) )
|
||||||
{
|
{
|
||||||
hit = true;
|
hit = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue