Merge pull request #132 from Pan7/SDL_Init

SDL_Init zero check
This commit is contained in:
Tim Angus 2015-07-25 11:54:12 +01:00
commit 605dfabb94
3 changed files with 3 additions and 3 deletions

View file

@ -516,7 +516,7 @@ static qboolean GLimp_StartDriverAndSetMode(int mode, qboolean fullscreen, qbool
{
const char *driverName;
if (SDL_Init(SDL_INIT_VIDEO) == -1)
if (SDL_Init(SDL_INIT_VIDEO) != 0)
{
ri.Printf( PRINT_ALL, "SDL_Init( SDL_INIT_VIDEO ) FAILED (%s)\n", SDL_GetError());
return qfalse;