mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix Polymost issue reported at http://forums.duke4.net/topic/775-eduke32-20-and-polymer/page__view__findpost__p__220265
git-svn-id: https://svn.eduke32.com/eduke32@5095 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
598011d59a
commit
e544488283
1 changed files with 1 additions and 1 deletions
|
@ -3466,7 +3466,7 @@ void polymost_drawrooms()
|
|||
|
||||
for (int i=0; i<4; i++)
|
||||
{
|
||||
int const j = i < n ? i + 1 : 0;
|
||||
int const j = i < 3 ? i + 1 : 0;
|
||||
|
||||
if (p[i].z >= SCISDIST)
|
||||
p2[n++] = p[i];
|
||||
|
|
Loading…
Reference in a new issue