mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +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
|
||||
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" );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue