]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
patch from div0 to make svc_finale text show up immediately if scr_printspeed is...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 27 Mar 2007 18:28:23 +0000 (18:28 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 27 Mar 2007 18:28:23 +0000 (18:28 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7009 d7cf8633-e32d-0410-b094-e92efae38249

cl_screen.c

index c7a4c82fb74db27f7765e9704b1e52ccdcc519b8..8b2f0f7c541a6714cfab5648f6015b887e40a066 100644 (file)
@@ -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;