From: havoc Date: Tue, 27 Mar 2007 18:28:23 +0000 (+0000) Subject: patch from div0 to make svc_finale text show up immediately if scr_printspeed is... X-Git-Tag: xonotic-v0.1.0preview~3408 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4c27ba941ca5360d1a37f548f7e199563dad6f25;p=xonotic%2Fdarkplaces.git patch from div0 to make svc_finale text show up immediately if scr_printspeed is a very high value git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7009 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_screen.c b/cl_screen.c index c7a4c82f..8b2f0f7c 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -109,8 +109,8 @@ void SCR_DrawCenterString (void) int remaining; int color; -// the finale prints the characters one at a time - if (cl.intermission) +// the finale prints the characters one at a time, except if printspeed is an absurdly high value + if (cl.intermission && scr_printspeed.value < 1000000) remaining = (int)(scr_printspeed.value * (cl.time - scr_centertime_start)); else remaining = 9999;