mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
- fixed crash when wipe type is set to none
This commit is contained in:
parent
b570f28597
commit
207988bb1b
1 changed files with 1 additions and 1 deletions
|
@ -868,7 +868,7 @@ void D_Display ()
|
|||
GSnd->DrawWaveDebug(snd_drawoutput);
|
||||
}
|
||||
|
||||
if (!wipe || NoWipe < 0)
|
||||
if (!wipe || NoWipe < 0 || wipe_type == wipe_None)
|
||||
{
|
||||
NetUpdate (); // send out any new accumulation
|
||||
// normal update
|
||||
|
|
Loading…
Reference in a new issue