- fixed: The main loop never checked the cutscene flag for disabling wipes.

This commit is contained in:
Christoph Oelckers 2022-10-14 07:08:04 +02:00
parent 9aee7415eb
commit 169053587c
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }