mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fixes y-flipping on the bottom side of some doors (see E1L3 security doors). Also, fuck you SwissCM.
git-svn-id: https://svn.eduke32.com/eduke32@1422 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
4a6bc850c0
commit
4e635849e1
1 changed files with 3 additions and 1 deletions
|
@ -2479,7 +2479,9 @@ static void polymer_updatewall(int16_t wallnum)
|
|||
w->wall.buffer[(i * 5) + 3] = ((dist * 8.0f * wal->xrepeat) + curxpanning) / (float)(tilesizx[curpicnum]);
|
||||
w->wall.buffer[(i * 5) + 4] = (-(float)(yref + (w->wall.buffer[(i * 5) + 1] * 16)) / ((tilesizy[curpicnum] * 2048.0f) / (float)(wal->yrepeat))) + ypancoef;
|
||||
|
||||
if (wal->cstat & 256) w->wall.buffer[(i * 5) + 4] = -w->wall.buffer[(i * 5) + 4];
|
||||
if ((!(wal->cstat & 2) && (wal->cstat & 256)) ||
|
||||
((wal->cstat & 2) && (wall[nwallnum].cstat & 256)))
|
||||
w->wall.buffer[(i * 5) + 4] = -w->wall.buffer[(i * 5) + 4];
|
||||
|
||||
i++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue