mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- fixed: The 'allowdecals' check in animated doors was wrong.
This commit is contained in:
parent
8b92597508
commit
25f60779fd
1 changed files with 1 additions and 1 deletions
|
@ -779,7 +779,7 @@ void FTextureManager::ParseAnimatedDoor(FScanner &sc)
|
||||||
}
|
}
|
||||||
frames.Push(v);
|
frames.Push(v);
|
||||||
}
|
}
|
||||||
else if (!sc.Compare("allowdecals"))
|
else if (sc.Compare("allowdecals"))
|
||||||
{
|
{
|
||||||
if (anim.BaseTexture.Exists()) Texture(anim.BaseTexture)->bNoDecals = true;
|
if (anim.BaseTexture.Exists()) Texture(anim.BaseTexture)->bNoDecals = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue