From 1940527dba3832dfa26aa2d72b1d9564a6414c6f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 17 Aug 2022 21:28:52 +0200 Subject: [PATCH] - carry over the tiling flag from the finished to the entering screen --- src/wi_stuff.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wi_stuff.cpp b/src/wi_stuff.cpp index 2a901d0556..c592f9b3a9 100644 --- a/src/wi_stuff.cpp +++ b/src/wi_stuff.cpp @@ -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;