Removed SDL_INIT_NOPARACHUTE from SDL_InitSubSystem

This flag doesn't do anything and is ignored.
This commit is contained in:
Charles Dang 2017-06-19 10:13:33 +11:00
parent 410d945d6d
commit 6c85e0d8a9

View file

@ -107,7 +107,7 @@ CVideo::CVideo(FAKE_TYPES type)
void CVideo::initSDL()
{
const int res = SDL_InitSubSystem(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
const int res = SDL_InitSubSystem(SDL_INIT_VIDEO);
if(res < 0) {
ERR_DP << "Could not initialize SDL_video: " << SDL_GetError() << std::endl;