mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 10:40:47 +00:00
Fixes infinite loops after having watched MP demo, this time correctly
git-svn-id: https://svn.eduke32.com/eduke32@1073 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e6d8451084
commit
a43fa91b64
1 changed files with 1 additions and 1 deletions
|
@ -11220,7 +11220,6 @@ MAIN_LOOP_RESTART:
|
||||||
|
|
||||||
if (ud.warp_on == 0 && playback())
|
if (ud.warp_on == 0 && playback())
|
||||||
{
|
{
|
||||||
ud.multimode = numplayers; // fixes playback() infinite loop after watching demo
|
|
||||||
FX_StopAllSounds();
|
FX_StopAllSounds();
|
||||||
clearsoundlocks();
|
clearsoundlocks();
|
||||||
g_NoLogoAnim = 1;
|
g_NoLogoAnim = 1;
|
||||||
|
@ -11730,6 +11729,7 @@ RECHECK:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ud.multimode = numplayers; // fixes 2 infinite loops after watching demo
|
||||||
kclose(recfilep);
|
kclose(recfilep);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in a new issue