r577 - trunk/code/client
    DONOTREPLY at icculus.org 
    DONOTREPLY at icculus.org
       
    Tue Feb 21 16:29:26 EST 2006
    
    
  
Author: tma
Date: 2006-02-21 16:29:26 -0500 (Tue, 21 Feb 2006)
New Revision: 577
Modified:
   trunk/code/client/cl_scrn.c
Log:
* Fix to bug #2599 (fullscreen cinematics)
Modified: trunk/code/client/cl_scrn.c
===================================================================
--- trunk/code/client/cl_scrn.c	2006-02-21 06:24:26 UTC (rev 576)
+++ trunk/code/client/cl_scrn.c	2006-02-21 21:29:26 UTC (rev 577)
@@ -440,7 +440,7 @@
 
 	// wide aspect ratio screens need to have the sides cleared
 	// unless they are displaying game renderings
-	if ( cls.state != CA_ACTIVE ) {
+	if ( cls.state != CA_ACTIVE && cls.state != CA_CINEMATIC ) {
 		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 );
    
    
More information about the quake3-commits
mailing list