Ensure SDL_image and SDL_ttf initialize correctly
This commit is contained in:
parent
0f58852e2b
commit
bb70c39811
17
src/main.cpp
17
src/main.cpp
|
@ -127,8 +127,21 @@ int main(int, char *argv[])
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
IMG_Init(IMG_INIT_PNG | IMG_INIT_JPG);
|
int imgFlags = IMG_INIT_PNG | IMG_INIT_JPG;
|
||||||
TTF_Init();
|
if (IMG_Init(imgFlags) != imgFlags)
|
||||||
|
{
|
||||||
|
qDebug() << "Error initializing SDL_image:" << SDL_GetError();
|
||||||
|
SDL_Quit();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (TTF_Init() < 0)
|
||||||
|
{
|
||||||
|
qDebug() << "Error initializing SDL_ttf:" << SDL_GetError();
|
||||||
|
IMG_Quit();
|
||||||
|
SDL_Quit();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
SDL_SetHint("SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS", "0");
|
SDL_SetHint("SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS", "0");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue