mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-13 07:21:31 +00:00
cl_main.c (CL_Disconnect): set cl.intermission to 0. Fixes a minor
intermission glitch which isn't hit easily. See Baker's notice at: http://forums.inside3d.com/viewtopic.php?t=4944 git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@695 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
5f6a2d7820
commit
3c08cf2e3c
4 changed files with 5 additions and 0 deletions
|
@ -137,6 +137,7 @@ void CL_Disconnect (void)
|
||||||
|
|
||||||
cls.demoplayback = cls.timedemo = false;
|
cls.demoplayback = cls.timedemo = false;
|
||||||
cls.signon = 0;
|
cls.signon = 0;
|
||||||
|
cl.intermission = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CL_Disconnect_f (void)
|
void CL_Disconnect_f (void)
|
||||||
|
|
|
@ -178,6 +178,7 @@ these patched libSDL binaries may help.
|
||||||
<LI> Fixed increased (more than 32) dynamic lights.</LI>
|
<LI> Fixed increased (more than 32) dynamic lights.</LI>
|
||||||
<LI> Music playback: Made sure that the file's channels count is supported.</LI>
|
<LI> Music playback: Made sure that the file's channels count is supported.</LI>
|
||||||
<LI> Support for Solaris.</LI>
|
<LI> Support for Solaris.</LI>
|
||||||
|
<LI> Fixed a minor intermissions glitch.</LI>
|
||||||
<LI> Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.</LI>
|
<LI> Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.</LI>
|
||||||
<LI> Restored original behavior for Quake registered version detection.</LI>
|
<LI> Restored original behavior for Quake registered version detection.</LI>
|
||||||
<LI> New icon.</LI>
|
<LI> New icon.</LI>
|
||||||
|
|
|
@ -104,6 +104,7 @@ these patched libSDL binaries may help.
|
||||||
<item> Fixed increased (more than 32) dynamic lights.
|
<item> Fixed increased (more than 32) dynamic lights.
|
||||||
<item> Music playback: Made sure that the file's channels count is supported.
|
<item> Music playback: Made sure that the file's channels count is supported.
|
||||||
<item> Support for Solaris.
|
<item> Support for Solaris.
|
||||||
|
<item> Fixed a minor intermissions glitch.
|
||||||
<item> Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.
|
<item> Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.
|
||||||
<item> Restored original behavior for Quake registered version detection.
|
<item> Restored original behavior for Quake registered version detection.
|
||||||
<item> New icon.
|
<item> New icon.
|
||||||
|
|
|
@ -170,6 +170,8 @@
|
||||||
|
|
||||||
o Support for Solaris.
|
o Support for Solaris.
|
||||||
|
|
||||||
|
o Fixed a minor intermissions glitch.
|
||||||
|
|
||||||
o Increased string buffer size from 256 to 384 for PF_VarString to
|
o Increased string buffer size from 256 to 384 for PF_VarString to
|
||||||
work around broken mods such as UQC.
|
work around broken mods such as UQC.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue