Removed SDL_INIT_NOPARACHUTE from SDL_InitSubSystem
This flag doesn't do anything and is ignored.
This commit is contained in:
parent
410d945d6d
commit
6c85e0d8a9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue