From 3472d792a99c4b082723ea756ab4860eb49dde50 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 1 Jun 2013 21:17:43 +0200 Subject: [PATCH] Fixed implicit function declarations and their warnings. For the SDL_SetMouseFocus() and SDL_SetKeyboardFocus(). --- src/video/android/SDL_androidwindow.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video/android/SDL_androidwindow.c b/src/video/android/SDL_androidwindow.c index b3c6cd9a4..70e244e1a 100644 --- a/src/video/android/SDL_androidwindow.c +++ b/src/video/android/SDL_androidwindow.c @@ -23,6 +23,8 @@ #if SDL_VIDEO_DRIVER_ANDROID #include "../SDL_sysvideo.h" +#include "../../events/SDL_keyboard_c.h" +#include "../../events/SDL_mouse_c.h" #include "SDL_androidvideo.h" #include "SDL_androidwindow.h"