From 3c08cf2e3c2393472cdefaeac167ce5d2ad5fe22 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Mon, 16 Jul 2012 17:00:24 +0000 Subject: [PATCH] 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 --- Quake/cl_main.c | 1 + README.html | 1 + README.sgml | 1 + README.txt | 2 ++ 4 files changed, 5 insertions(+) diff --git a/Quake/cl_main.c b/Quake/cl_main.c index 24db8ef5..5dfd7605 100644 --- a/Quake/cl_main.c +++ b/Quake/cl_main.c @@ -137,6 +137,7 @@ void CL_Disconnect (void) cls.demoplayback = cls.timedemo = false; cls.signon = 0; + cl.intermission = 0; } void CL_Disconnect_f (void) diff --git a/README.html b/README.html index 693b51f4..0aedb3da 100644 --- a/README.html +++ b/README.html @@ -178,6 +178,7 @@ these patched libSDL binaries may help.
  • Fixed increased (more than 32) dynamic lights.
  • Music playback: Made sure that the file's channels count is supported.
  • Support for Solaris.
  • +
  • Fixed a minor intermissions glitch.
  • Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.
  • Restored original behavior for Quake registered version detection.
  • New icon.
  • diff --git a/README.sgml b/README.sgml index eca047ae..efa6f67c 100644 --- a/README.sgml +++ b/README.sgml @@ -104,6 +104,7 @@ these patched libSDL binaries may help. Fixed increased (more than 32) dynamic lights. Music playback: Made sure that the file's channels count is supported. Support for Solaris. + Fixed a minor intermissions glitch. Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC. Restored original behavior for Quake registered version detection. New icon. diff --git a/README.txt b/README.txt index 4f11b7ec..1ac48b8a 100644 --- a/README.txt +++ b/README.txt @@ -170,6 +170,8 @@ o Support for Solaris. + o Fixed a minor intermissions glitch. + o Increased string buffer size from 256 to 384 for PF_VarString to work around broken mods such as UQC.