mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- do not clamp warped textures.
This commit is contained in:
parent
201652bb36
commit
760bffbf06
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ void HWWall::RenderTexturedWall(HWDrawInfo *di, FRenderState &state, int rflags)
|
|||
}
|
||||
#endif
|
||||
|
||||
if (flags & HWWall::HWF_CLAMPY && (type == RENDERWALL_M2S || type == RENDERWALL_M2SNF))
|
||||
if (flags & HWWall::HWF_CLAMPY && (type == RENDERWALL_M2S || type == RENDERWALL_M2SNF) && !texture->isWarped())
|
||||
{
|
||||
state.SetTextureClamp(true);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue