[quake3-commits] r2292 - trunk/code/renderer

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jul 1 12:59:20 EDT 2012


Author: thilo
Date: 2012-07-01 12:59:20 -0400 (Sun, 01 Jul 2012)
New Revision: 2292

Modified:
   trunk/code/renderer/tr_init.c
Log:
Incorrect number of overbright bits printed by GfxInfo_f() (#5510) - fix by Serge Belyshev


Modified: trunk/code/renderer/tr_init.c
===================================================================
--- trunk/code/renderer/tr_init.c	2012-07-01 16:43:28 UTC (rev 2291)
+++ trunk/code/renderer/tr_init.c	2012-07-01 16:59:20 UTC (rev 2292)
@@ -214,9 +214,6 @@
 	// init command buffers and SMP
 	R_InitCommandBuffers();
 
-	// print info
-	GfxInfo_f();
-
 	// set default state
 	GL_SetDefaultState();
 }
@@ -1239,6 +1236,8 @@
 	if ( err != GL_NO_ERROR )
 		ri.Printf (PRINT_ALL, "glGetError() = 0x%x\n", err);
 
+	// print info
+	GfxInfo_f();
 	ri.Printf( PRINT_ALL, "----- finished R_Init -----\n" );
 }
 



More information about the quake3-commits mailing list