mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: The intermission screen did not show 'entering' for cluster-less maps.
This commit is contained in:
parent
e4e023e59a
commit
1ed2a0baf9
1 changed files with 2 additions and 1 deletions
|
@ -1155,7 +1155,8 @@ public:
|
|||
|
||||
void WI_initShowNextLoc ()
|
||||
{
|
||||
if (wbs->next_ep == -1)
|
||||
auto info = FindLevelInfo(wbs->next, false);
|
||||
if (info == nullptr)
|
||||
{
|
||||
// Last map in episode - there is no next location!
|
||||
WI_End();
|
||||
|
|
Loading…
Reference in a new issue