mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-07 09:01:57 +00:00
- fixed: The main loop never checked the cutscene flag for disabling wipes.
This commit is contained in:
parent
9aee7415eb
commit
169053587c
1 changed files with 2 additions and 2 deletions
|
@ -933,9 +933,9 @@ void D_Display ()
|
||||||
}
|
}
|
||||||
|
|
||||||
// [RH] Allow temporarily disabling wipes
|
// [RH] Allow temporarily disabling wipes
|
||||||
if (NoWipe)
|
if (NoWipe || !CanWipe())
|
||||||
{
|
{
|
||||||
NoWipe--;
|
if (NoWipe > 0) NoWipe--;
|
||||||
wipestart = nullptr;
|
wipestart = nullptr;
|
||||||
wipegamestate = gamestate;
|
wipegamestate = gamestate;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue