diff options
-rw-r--r-- | code/sdl/sdl_glimp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/sdl/sdl_glimp.c b/code/sdl/sdl_glimp.c index fbc7497..cbe704a 100644 --- a/code/sdl/sdl_glimp.c +++ b/code/sdl/sdl_glimp.c @@ -412,7 +412,7 @@ static qboolean GLimp_StartDriverAndSetMode( int mode, qboolean fullscreen ) if (!SDL_WasInit(SDL_INIT_VIDEO)) { - char driverName[ 64 ]; + char driverName[ 64 ]; if (SDL_Init(SDL_INIT_VIDEO) == -1) { @@ -420,7 +420,7 @@ static qboolean GLimp_StartDriverAndSetMode( int mode, qboolean fullscreen ) return qfalse; } - SDL_VideoDriverName( driverName, sizeof( driverName ) - 1 ); + SDL_VideoDriverName( driverName, sizeof( driverName ) - 1 ); ri.Printf( PRINT_ALL, "SDL using driver \"%s\"\n", driverName ); } |