mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +00:00
Incorrect number of overbright bits printed by GfxInfo_f() (#5510) - fix by Serge Belyshev
This commit is contained in:
parent
ca44693f34
commit
c9fc250532
1 changed files with 2 additions and 3 deletions
|
@ -214,9 +214,6 @@ static void InitOpenGL( void )
|
||||||
// init command buffers and SMP
|
// init command buffers and SMP
|
||||||
R_InitCommandBuffers();
|
R_InitCommandBuffers();
|
||||||
|
|
||||||
// print info
|
|
||||||
GfxInfo_f();
|
|
||||||
|
|
||||||
// set default state
|
// set default state
|
||||||
GL_SetDefaultState();
|
GL_SetDefaultState();
|
||||||
}
|
}
|
||||||
|
@ -1239,6 +1236,8 @@ void R_Init( void ) {
|
||||||
if ( err != GL_NO_ERROR )
|
if ( err != GL_NO_ERROR )
|
||||||
ri.Printf (PRINT_ALL, "glGetError() = 0x%x\n", err);
|
ri.Printf (PRINT_ALL, "glGetError() = 0x%x\n", err);
|
||||||
|
|
||||||
|
// print info
|
||||||
|
GfxInfo_f();
|
||||||
ri.Printf( PRINT_ALL, "----- finished R_Init -----\n" );
|
ri.Printf( PRINT_ALL, "----- finished R_Init -----\n" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue