From 4c27ba941ca5360d1a37f548f7e199563dad6f25 Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 27 Mar 2007 18:28:23 +0000 Subject: [PATCH] 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 --- cl_screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2