mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- Fixed: Intermissions with no screens (such as EndTitle) would result in a double wipe.
This commit is contained in:
parent
fc15be8689
commit
fd4440cfe4
1 changed files with 4 additions and 1 deletions
|
@ -722,7 +722,10 @@ DIntermissionController::DIntermissionController(FIntermissionDescriptor *Desc,
|
|||
mScreen = NULL;
|
||||
mFirst = true;
|
||||
mGameState = state;
|
||||
NextPage();
|
||||
|
||||
// If the intermission finishes straight away then cancel the wipe.
|
||||
if(!NextPage())
|
||||
wipegamestate = GS_FINALE;
|
||||
}
|
||||
|
||||
bool DIntermissionController::NextPage ()
|
||||
|
|
Loading…
Reference in a new issue