mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +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);
|
GSnd->DrawWaveDebug(snd_drawoutput);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wipe || NoWipe < 0)
|
if (!wipe || NoWipe < 0 || wipe_type == wipe_None)
|
||||||
{
|
{
|
||||||
NetUpdate (); // send out any new accumulation
|
NetUpdate (); // send out any new accumulation
|
||||||
// normal update
|
// normal update
|
||||||
|
|
Loading…
Reference in a new issue