From 4ca8dd2ec3a2d1f77dc00c45eef2fd99c3651fe9 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 1 Jun 2013 21:09:36 +0200 Subject: [PATCH 1/3] Corrected indentation of license. --- src/events/SDL_gesture.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/events/SDL_gesture.c b/src/events/SDL_gesture.c index f7c8c8932..8e764318a 100644 --- a/src/events/SDL_gesture.c +++ b/src/events/SDL_gesture.c @@ -11,11 +11,11 @@ freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. + misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ From ca5257af5b56a3ae83bab52a6fc80f648ebd8971 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 1 Jun 2013 21:11:52 +0200 Subject: [PATCH 2/3] Removed debug output. --- src/video/android/SDL_androidvideo.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/video/android/SDL_androidvideo.c b/src/video/android/SDL_androidvideo.c index 4b4a85196..6dcb81e70 100644 --- a/src/video/android/SDL_androidvideo.c +++ b/src/video/android/SDL_androidvideo.c @@ -83,7 +83,6 @@ Android_DeleteDevice(SDL_VideoDevice * device) static SDL_VideoDevice * Android_CreateDevice(int devindex) { - printf("Creating video device\n"); SDL_VideoDevice *device; SDL_VideoData *data; From 2cbe8779e297f729096280234b6b6a1fad974492 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 1 Jun 2013 21:17:43 +0200 Subject: [PATCH 3/3] 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"