From a0288ec2d0a7d549d3215c17f15b202ba046a80b Mon Sep 17 00:00:00 2001 From: divverent Date: Sun, 27 May 2007 09:22:07 +0000 Subject: [PATCH] that was missing in 7372 (TAB should also hide the centerprinting of finale) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7376 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_screen.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cl_screen.c b/cl_screen.c index 6599c20f..59809c91 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -112,10 +112,9 @@ void SCR_DrawCenterString (void) int remaining; int color; - if(gamemode == GAME_NEXUIZ) - if(cl.intermission == 2) // in Nexuiz finale (voting screen), - if(sb_showscores) // make TAB hide vote messages - return; + if(cl.intermission == 2) // in finale, + if(sb_showscores) // make TAB hide the finale message (sb_showscores overrides finale in sbar.c) + return; // the finale prints the characters one at a time, except if printspeed is an absurdly high value if (cl.intermission && scr_printspeed.value > 0 && scr_printspeed.value < 1000000) -- 2.39.2