- fixed: Subsectors which are the origin of polyobjects should not be drawn on the textured automap because the vertices no longer are where they'd be expected to be.

SVN r2622 (trunk)
This commit is contained in:
Christoph Oelckers 2010-08-28 16:51:41 +00:00
commit 4e1a514455
3 changed files with 23 additions and 0 deletions

View file

@ -1609,6 +1609,11 @@ void AM_drawSubsectors()
for (int i = 0; i < numsubsectors; ++i)
{
if (subsectors[i].flags & SSECF_POLYORG)
{
continue;
}
if ((!(subsectors[i].flags & SSECF_DRAWN) || (subsectors[i].render_sector->MoreFlags & SECF_HIDDEN)) && am_cheat == 0)
{
continue;