mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- carry over the tiling flag from the finished to the entering screen
This commit is contained in:
parent
88674b5ea0
commit
1940527dba
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue