mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
This might not be needed anymore after the previous commit
git-svn-id: https://svn.eduke32.com/eduke32@7375 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
0e107acd39
commit
23e53c17fc
1 changed files with 5 additions and 2 deletions
|
@ -3788,8 +3788,11 @@ skip: ;
|
||||||
|
|
||||||
int const ni = vsp[i].n;
|
int const ni = vsp[i].n;
|
||||||
|
|
||||||
if ((vsp[i].ctag == vsp[ni].ctag) && (vsp[i].ftag == vsp[ni].ftag) &&
|
if ((vsp[i].ctag == vsp[ni].ctag) && (vsp[i].ftag == vsp[ni].ftag)
|
||||||
((vsp[i].cy[1] <= vsp[ni].cy[1]) || (vsp[i].fy[1] <= vsp[ni].fy[1])))
|
#ifdef COMBINE_STRIPS_IS_STILL_BUGGED
|
||||||
|
&& ((vsp[i].cy[1] <= vsp[ni].cy[1]) || (vsp[i].fy[1] <= vsp[ni].fy[1]))
|
||||||
|
#endif
|
||||||
|
)
|
||||||
{
|
{
|
||||||
vsp[i].cy[1] = vsp[ni].cy[1];
|
vsp[i].cy[1] = vsp[ni].cy[1];
|
||||||
vsp[i].fy[1] = vsp[ni].fy[1];
|
vsp[i].fy[1] = vsp[ni].fy[1];
|
||||||
|
|
Loading…
Reference in a new issue