mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
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:
parent
f92b3cbfdd
commit
d62268ffd0
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue