From a07e9393d64742c3d966910b38213420b5abf775 Mon Sep 17 00:00:00 2001 From: Ingo Ruhnke Date: Wed, 6 Aug 2014 04:30:26 +0200 Subject: [PATCH] Init game controller on startup --- src/supertux/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/supertux/main.cpp b/src/supertux/main.cpp index ca02a0fd2..7b80c2624 100644 --- a/src/supertux/main.cpp +++ b/src/supertux/main.cpp @@ -391,7 +391,7 @@ Main::parse_commandline(int argc, char** argv) void Main::init_sdl() { - if(SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) { + if(SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO | SDL_INIT_JOYSTICK | SDL_INIT_GAMECONTROLLER) < 0) { std::stringstream msg; msg << "Couldn't initialize SDL: " << SDL_GetError(); throw std::runtime_error(msg.str()); -- 2.11.0