Incorrect number of overbright bits printed by GfxInfo_f() (#5510) - fix by Serge Belyshev

This commit is contained in:
Thilo Schulz 2012-07-01 16:59:20 +00:00
parent ca44693f34
commit c9fc250532
1 changed files with 2 additions and 3 deletions

View File

@ -214,9 +214,6 @@ static void InitOpenGL( void )
// init command buffers and SMP
R_InitCommandBuffers();
// print info
GfxInfo_f();
// set default state
GL_SetDefaultState();
}
@ -1239,6 +1236,8 @@ void R_Init( void ) {
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" );
}