mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-04 01:41:56 +00:00
Account for the NOTONAUTOMAP flag when using am_thingrenderstyles
This commit is contained in:
parent
5e65a9d6b9
commit
a0fee03209
1 changed files with 1 additions and 1 deletions
|
@ -2983,7 +2983,7 @@ void AM_drawThings ()
|
|||
while (t)
|
||||
{
|
||||
if (am_cheat > 0 || !(t->flags6 & MF6_NOTONAUTOMAP)
|
||||
|| (am_thingrenderstyles && !(t->renderflags & RF_INVISIBLE)))
|
||||
|| (am_thingrenderstyles && !(t->renderflags & RF_INVISIBLE) && !(t->flags6 & MF6_NOTONAUTOMAP)))
|
||||
{
|
||||
DVector3 pos = t->PosRelative(MapPortalGroup);
|
||||
p.x = pos.X;
|
||||
|
|
Loading…
Reference in a new issue