mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
* Report SDL driver used on GLimp initialisation
This commit is contained in:
parent
00e790ce00
commit
d56c53abb4
1 changed files with 6 additions and 3 deletions
|
@ -412,13 +412,16 @@ static qboolean GLimp_StartDriverAndSetMode( int mode, qboolean fullscreen )
|
||||||
|
|
||||||
if (!SDL_WasInit(SDL_INIT_VIDEO))
|
if (!SDL_WasInit(SDL_INIT_VIDEO))
|
||||||
{
|
{
|
||||||
ri.Printf( PRINT_ALL, "SDL_Init( SDL_INIT_VIDEO )... ");
|
char driverName[ 64 ];
|
||||||
|
|
||||||
if (SDL_Init(SDL_INIT_VIDEO) == -1)
|
if (SDL_Init(SDL_INIT_VIDEO) == -1)
|
||||||
{
|
{
|
||||||
ri.Printf( PRINT_ALL, "FAILED (%s)\n", SDL_GetError());
|
ri.Printf( PRINT_ALL, "SDL_Init FAILED (%s)\n", SDL_GetError());
|
||||||
return qfalse;
|
return qfalse;
|
||||||
}
|
}
|
||||||
ri.Printf( PRINT_ALL, "OK\n");
|
|
||||||
|
SDL_VideoDriverName( driverName, sizeof( driverName ) - 1 );
|
||||||
|
ri.Printf( PRINT_ALL, "SDL using driver \"%s\"\n", driverName );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fullscreen && Cvar_VariableIntegerValue( "in_nograb" ) )
|
if (fullscreen && Cvar_VariableIntegerValue( "in_nograb" ) )
|
||||||
|
|
Loading…
Reference in a new issue