From: lordhavoc Date: Fri, 1 Mar 2002 12:53:52 +0000 (+0000) Subject: fix for being stuck on a loading screen when it could not find the map (and any other... X-Git-Tag: RELEASE_0_2_0_RC1~596 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d7654008871af68e511a02124761b34efd847639;p=xonotic%2Fdarkplaces.git fix for being stuck on a loading screen when it could not find the map (and any other such failures) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@1600 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_screen.c b/cl_screen.c index 2278dc35..174f320d 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -320,8 +320,9 @@ void SCR_BeginLoadingPlaque (void) scr_drawloading = true; CL_UpdateScreen (); + scr_drawloading = true; CL_UpdateScreen (); - scr_drawloading = false; + //scr_drawloading = false; // scr_disabled_for_loading = true; // scr_disabled_time = realtime; @@ -1004,6 +1005,7 @@ void CL_UpdateScreen(void) if (scr_drawloading) { + scr_drawloading = false; scr_con_current = vid.conheight; DrawQ_Clear(); SCR_DrawLoading();