Don't init force feedback if not used

This commit is contained in:
Monwarez 2016-10-28 17:33:38 +02:00
parent 0f1272f338
commit 79e00dfcad
1 changed files with 2 additions and 1 deletions

View File

@ -667,7 +667,8 @@ int mainSetup(int argc, char **argv) {
}
else {
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
if(SDL_Init(SDL_INIT_EVERYTHING) < 0) {
if(SDL_Init(SDL_INIT_TIMER | SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | \
SDL_INIT_GAMECONTROLLER | SDL_INIT_EVENTS) < 0) {
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);
std::cerr << "Couldn't initialize SDL: " << SDL_GetError() << "\n";
return 3;