Init SDL2 before Qt4 to avoid crash on Linux (bug #4529)
parent
a9729878d7
commit
2b90504558
@ -0,0 +1,25 @@
|
||||
#include <signal.h>
|
||||
|
||||
#include <SDL.h>
|
||||
#include <SDL_video.h>
|
||||
|
||||
bool initSDL()
|
||||
{
|
||||
SDL_SetHint(SDL_HINT_RENDER_DRIVER, "software");
|
||||
SDL_SetMainReady();
|
||||
// Required for determining screen resolution and such on the Graphics tab
|
||||
if (SDL_Init(SDL_INIT_VIDEO) != 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
signal(SIGINT, SIG_DFL); // We don't want to use the SDL event loop in the launcher,
|
||||
// so reset SIGINT which SDL wants to redirect to an SDL_Quit event.
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void quitSDL()
|
||||
{
|
||||
// Disconnect from SDL processes
|
||||
SDL_Quit();
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
#ifndef SDLINIT_H
|
||||
#define SDLINIT_H
|
||||
|
||||
bool initSDL();
|
||||
|
||||
void quitSDL();
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue