Fixed: Masked midtexture yscale incorrectly used the texture's X scale

This commit is contained in:
Marisa Heit 2016-11-01 00:18:56 -05:00
parent 9388597443
commit 5df21fda68
1 changed files with 1 additions and 1 deletions

View File

@ -2539,7 +2539,7 @@ void R_StoreWallRange (int start, int stop)
lwal = (fixed_t *)(openings + ds_p->maskedtexturecol);
swal = (float *)(openings + ds_p->swall);
FTexture *pic = TexMan(sidedef->GetTexture(side_t::mid), true);
double yscale = pic->Scale.X * sidedef->GetTextureYScale(side_t::mid);
double yscale = pic->Scale.Y * sidedef->GetTextureYScale(side_t::mid);
fixed_t xoffset = FLOAT2FIXED(sidedef->GetTextureXOffset(side_t::mid));
if (pic->bWorldPanning)