mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-01 00:21:43 +00:00
Intermission script's noautostartmap keyword is no longer ignored
https://forum.zdoom.org/viewtopic.php?t=57799
This commit is contained in:
parent
5ab0f34aca
commit
830b68acbc
1 changed files with 2 additions and 3 deletions
|
@ -490,7 +490,7 @@ class StatusScreen abstract play version("2.5")
|
||||||
CurState = ShowNextLoc;
|
CurState = ShowNextLoc;
|
||||||
acceleratestage = 0;
|
acceleratestage = 0;
|
||||||
cnt = SHOWNEXTLOCDELAY * Thinker.TICRATE;
|
cnt = SHOWNEXTLOCDELAY * Thinker.TICRATE;
|
||||||
bg.LoadBackground(true);
|
noautostartmap = bg.LoadBackground(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//====================================================================
|
//====================================================================
|
||||||
|
@ -693,7 +693,6 @@ class StatusScreen abstract play version("2.5")
|
||||||
|
|
||||||
virtual void Start (wbstartstruct wbstartstruct)
|
virtual void Start (wbstartstruct wbstartstruct)
|
||||||
{
|
{
|
||||||
noautostartmap = false;
|
|
||||||
wbs = wbstartstruct;
|
wbs = wbstartstruct;
|
||||||
acceleratestage = 0;
|
acceleratestage = 0;
|
||||||
cnt = bcnt = 0;
|
cnt = bcnt = 0;
|
||||||
|
@ -717,7 +716,7 @@ class StatusScreen abstract play version("2.5")
|
||||||
lnametexts[1] = wbstartstruct.nextname;
|
lnametexts[1] = wbstartstruct.nextname;
|
||||||
|
|
||||||
bg = InterBackground.Create(wbs);
|
bg = InterBackground.Create(wbs);
|
||||||
bg.LoadBackground(false);
|
noautostartmap = bg.LoadBackground(false);
|
||||||
initStats();
|
initStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue