mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Fixed: Wall sprites cut off one pixel short of the window's right border
This commit is contained in:
parent
6303935ad6
commit
7b02027ba7
1 changed files with 2 additions and 2 deletions
|
@ -411,7 +411,7 @@ void R_DrawWallSprite(vissprite_t *spr)
|
||||||
fixed_t yscale;
|
fixed_t yscale;
|
||||||
|
|
||||||
x1 = MAX<int>(spr->x1, spr->wallc.sx1);
|
x1 = MAX<int>(spr->x1, spr->wallc.sx1);
|
||||||
x2 = MIN<int>(spr->x2, spr->wallc.sx2 + 1);
|
x2 = MIN<int>(spr->x2 + 1, spr->wallc.sx2 + 1);
|
||||||
if (x1 >= x2)
|
if (x1 >= x2)
|
||||||
return;
|
return;
|
||||||
WallT.InitFromWallCoords(&spr->wallc);
|
WallT.InitFromWallCoords(&spr->wallc);
|
||||||
|
@ -1074,7 +1074,7 @@ static void R_ProjectWallSprite(AActor *thing, fixed_t fx, fixed_t fy, fixed_t f
|
||||||
|
|
||||||
vis = R_NewVisSprite();
|
vis = R_NewVisSprite();
|
||||||
vis->x1 = wallc.sx1 < WindowLeft ? WindowLeft : wallc.sx1;
|
vis->x1 = wallc.sx1 < WindowLeft ? WindowLeft : wallc.sx1;
|
||||||
vis->x2 = wallc.sx2 >= WindowRight ? WindowRight-1 : wallc.sx2-1;
|
vis->x2 = wallc.sx2 >= WindowRight ? WindowRight : wallc.sx2-1;
|
||||||
vis->yscale = yscale;
|
vis->yscale = yscale;
|
||||||
vis->idepth = (unsigned)DivScale32(1, tz) >> 1;
|
vis->idepth = (unsigned)DivScale32(1, tz) >> 1;
|
||||||
vis->depth = tz;
|
vis->depth = tz;
|
||||||
|
|
Loading…
Reference in a new issue