From 7db12693ff89475e377075199a432d68c9591f6b Mon Sep 17 00:00:00 2001 From: Anthony Pesch Date: Thu, 23 Jan 2014 13:40:25 -0800 Subject: don't clear screen during CA_LOADING and CA_PRIMED --- src/client/cl_scrn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_scrn.c b/src/client/cl_scrn.c index 73dbe5b1..1f2f60bf 100644 --- a/src/client/cl_scrn.c +++ b/src/client/cl_scrn.c @@ -462,7 +462,7 @@ void SCR_DrawScreenField( stereoFrame_t stereoFrame ) { // wide aspect ratio screens need to have the sides cleared // unless they are displaying game renderings - if ( uiFullscreen || (clc.state != CA_ACTIVE && clc.state != CA_CINEMATIC) ) { + if ( uiFullscreen || clc.state < CA_LOADING ) { if ( cls.glconfig.vidWidth * 480 > cls.glconfig.vidHeight * 640 ) { re.SetColor( g_color_table[0] ); re.DrawStretchPic( 0, 0, cls.glconfig.vidWidth, cls.glconfig.vidHeight, 0, 0, 0, 0, cls.whiteShader ); -- cgit