- carry over the tiling flag from the finished to the entering screen

This commit is contained in:
Christoph Oelckers 2022-08-17 21:28:52 +02:00
parent 88674b5ea0
commit 1940527dba
1 changed files with 3 additions and 1 deletions

View File

@ -278,7 +278,7 @@ bool DInterBackground::LoadBackground(bool isenterpic)
bcnt = 0;
tilebackground = false;
if (!isenterpic) tilebackground = false;
texture.SetInvalid();
level_info_t * li = FindLevelInfo(wbs->current);
@ -329,6 +329,7 @@ bool DInterBackground::LoadBackground(bool isenterpic)
}
}
lumpname = "INTERPIC";
tilebackground = false;
}
break;
@ -345,6 +346,7 @@ bool DInterBackground::LoadBackground(bool isenterpic)
{
if (isenterpic) return false;
lumpname = "FLOOR16";
tilebackground = true;
}
break;