mirror of
https://github.com/glest/glest-source.git
synced 2025-02-23 11:15:02 +01:00
Don't init force feedback if not used
This commit is contained in:
parent
0f1272f338
commit
79e00dfcad
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user