From 0f7c67daabf6bbca35ec7cdad5eeeaf0988aced4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Fri, 15 Aug 2014 19:21:16 -0300 Subject: [PATCH] (SDL) Fix #ifdef typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Higor Eurípedes --- input/sdl_joypad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/sdl_joypad.c b/input/sdl_joypad.c index 3d8e909aa1..203fdd1a5a 100644 --- a/input/sdl_joypad.c +++ b/input/sdl_joypad.c @@ -129,7 +129,7 @@ static bool sdl_joypad_init(void) else if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) < 0) return false; -#if HAS_SDL2 +#if HAVE_SDL2 // TODO: Add SDL_GameController support. //if (SDL_Init(SDL_INIT_GAMECONTROLLER) < 0) // RARCH_LOG("[SDL]: Failed to initialize game controller interface: %s\n",