]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix intermission display on recorded singleplayer demos, it was checking
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 29 Aug 2007 05:35:08 +0000 (05:35 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 29 Aug 2007 05:35:08 +0000 (05:35 +0000)
cl.islocalgame which is false on demo playback and thinking it should
draw multiplayer scoreboard instead of the intermission stats

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7544 d7cf8633-e32d-0410-b094-e92efae38249

sbar.c

diff --git a/sbar.c b/sbar.c
index f28fd46ff390421c27bc7b73ba5eca523e4fc70c..67a3cde07abf2e6e146577af860cb522a704dcdd 100644 (file)
--- a/sbar.c
+++ b/sbar.c
@@ -1974,9 +1974,7 @@ void Sbar_IntermissionOverlay (void)
        int             dig;
        int             num;
 
-       // LordHavoc: changed to draw the deathmatch overlays in any multiplayer mode
-       //if (cl.gametype == GAME_DEATHMATCH)
-       if (!cl.islocalgame)
+       if (cl.gametype == GAME_DEATHMATCH)
        {
                Sbar_DeathmatchOverlay ();
                return;