mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Fix texture coordinate
This commit is contained in:
parent
ee15856786
commit
cfc977f9e6
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ void PolyWallTextureCoords::CalcVBottomPart(FTexture *tex, const seg_t *line, do
|
|||
}
|
||||
else
|
||||
{
|
||||
v1 = -yoffset + (unpeggedceil - topz);
|
||||
v1 = yoffset + (unpeggedceil - topz);
|
||||
v2 = v1 + (topz - bottomz);
|
||||
v1 *= vscale;
|
||||
v2 *= vscale;
|
||||
|
|
Loading…
Reference in a new issue