mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 22:42:57 +00:00
Fix a part in maskwallscan that was missed for right-edge exclusivity
This commit is contained in:
parent
52a6f40eff
commit
1d0a3d19c8
1 changed files with 2 additions and 2 deletions
|
@ -1082,7 +1082,7 @@ void wallscan (int x1, int x2, short *uwal, short *dwal, fixed_t *swal, fixed_t
|
||||||
basecolormapdata = basecolormap->Maps;
|
basecolormapdata = basecolormap->Maps;
|
||||||
|
|
||||||
x = x1;
|
x = x1;
|
||||||
//while ((umost[x] > dmost[x]) && (x <= x2)) x++;
|
//while ((umost[x] > dmost[x]) && (x < x2)) x++;
|
||||||
|
|
||||||
bool fixed = (fixedcolormap != NULL || fixedlightlev >= 0);
|
bool fixed = (fixedcolormap != NULL || fixedlightlev >= 0);
|
||||||
if (fixed)
|
if (fixed)
|
||||||
|
@ -1439,7 +1439,7 @@ void maskwallscan (int x1, int x2, short *uwal, short *dwal, fixed_t *swal, fixe
|
||||||
palookupoffse[3] = dc_colormap;
|
palookupoffse[3] = dc_colormap;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(; (x <= x2) && ((size_t)p & 3); ++x, ++p)
|
for(; (x < x2) && ((size_t)p & 3); ++x, ++p)
|
||||||
{
|
{
|
||||||
light += rw_lightstep;
|
light += rw_lightstep;
|
||||||
y1ve[0] = uwal[x];//max(uwal[x],umost[x]);
|
y1ve[0] = uwal[x];//max(uwal[x],umost[x]);
|
||||||
|
|
Loading…
Reference in a new issue