Fixed crash regarding opening reallocating. A thousand thanks go for MonsterIestyn for figuring this out.

I carelessly changed the line's drawsegs to curdrawsegs without researching what that piece of code did.
This commit is contained in:
Nev3r 2019-06-09 20:04:07 +02:00
parent 0795c7811a
commit f536ab3467
1 changed files with 1 additions and 1 deletions

View File

@ -1796,7 +1796,7 @@ void R_StoreWallRange(INT32 start, INT32 stop)
// borrowed fix from *cough* zdoom *cough*
// [RH] We also need to adjust the openings pointers that
// were already stored in drawsegs.
for (ds = curdrawsegs; ds < ds_p; ds++)
for (ds = drawsegs; ds < ds_p; ds++)
{
#define ADJUST(p) if (ds->p + ds->x1 >= oldopenings && ds->p + ds->x1 <= oldlast) ds->p = ds->p - oldopenings + openings;
ADJUST(maskedtexturecol);