Skip to content

Commit

Permalink
Removed SDL_INIT_NOPARACHUTE from SDL_InitSubSystem
Browse files Browse the repository at this point in the history
This flag doesn't do anything and is ignored.
  • Loading branch information
Vultraz committed Jun 18, 2017
1 parent e1e85fa commit 3dcdd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video.cpp
Expand Up @@ -110,7 +110,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;
Expand Down

0 comments on commit 3dcdd85

Please sign in to comment.