mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-03-13 20:21:57 +00:00
- fixed bad assignments for vertex compare data in sector triangulator.
This commit is contained in:
parent
e0fe8d2ed9
commit
b93502f0d0
1 changed files with 2 additions and 2 deletions
|
@ -324,7 +324,7 @@ void SectorGeometry::ValidateSector(unsigned int secnum, int plane)
|
|||
sec->dirty &= ~2;
|
||||
}
|
||||
*compare = *sec;
|
||||
data[secnum].poscompare == wall[sec->wallptr].pos;
|
||||
data[secnum].poscompare2 == wall[wall[sec->wallptr].point2].pos;
|
||||
data[secnum].poscompare = wall[sec->wallptr].pos;
|
||||
data[secnum].poscompare2 = wall[wall[sec->wallptr].point2].pos;
|
||||
MakeVertices(secnum, plane);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue