mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-04-22 15:47:19 +00:00
- Fixed game finales not being shown after the intermission.
This commit is contained in:
parent
6d69785838
commit
55af0b11c6
1 changed files with 2 additions and 2 deletions
|
@ -777,7 +777,7 @@ void G_DoCompleted (void)
|
|||
wminfo.current = level.MapName;
|
||||
|
||||
if (deathmatch &&
|
||||
(*dmflags & DF_SAME_LEVEL) &&
|
||||
(dmflags & DF_SAME_LEVEL) &&
|
||||
!(level.flags & LEVEL_CHANGEMAPCHEAT))
|
||||
{
|
||||
wminfo.next = level.MapName;
|
||||
|
@ -790,7 +790,7 @@ void G_DoCompleted (void)
|
|||
level_info_t *nextinfo = FindLevelInfo (nextlevel, false);
|
||||
if (nextinfo == NULL || strncmp (nextlevel, "enDSeQ", 6) == 0)
|
||||
{
|
||||
wminfo.next = "";
|
||||
wminfo.next = nextlevel;
|
||||
wminfo.LName1.SetInvalid();
|
||||
wminfo.nextname = "";
|
||||
wminfo.nextauthor = "";
|
||||
|
|
Loading…
Reference in a new issue