From 3c5729cff0af6f7fa3418ab598e2c88999da2ef9 Mon Sep 17 00:00:00 2001 From: pelya Date: Sun, 2 Jun 2013 22:01:33 +0300 Subject: [PATCH] Disable pinch/zoom/rotate gestures, if they are not specified in AndroidAppSettings.cfg --- project/jni/sdl-1.2/src/video/android/SDL_androidinput.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project/jni/sdl-1.2/src/video/android/SDL_androidinput.h b/project/jni/sdl-1.2/src/video/android/SDL_androidinput.h index a04f0399c..de8326590 100644 --- a/project/jni/sdl-1.2/src/video/android/SDL_androidinput.h +++ b/project/jni/sdl-1.2/src/video/android/SDL_androidinput.h @@ -178,16 +178,16 @@ extern int SDL_ANDROID_isTouchscreenKeyboardUsed; #define SDL_ANDROID_SCREENKB_KEYCODE_5 SDL_ANDROID_KEYCODE_7 #endif #ifndef SDL_ANDROID_SCREENKB_KEYCODE_6 -#define SDL_ANDROID_SCREENKB_KEYCODE_6 SDL_ANDROID_KEYCODE_4 +#define SDL_ANDROID_SCREENKB_KEYCODE_6 UNKNOWN #endif #ifndef SDL_ANDROID_SCREENKB_KEYCODE_7 -#define SDL_ANDROID_SCREENKB_KEYCODE_7 SDL_ANDROID_KEYCODE_5 +#define SDL_ANDROID_SCREENKB_KEYCODE_7 UNKNOWN #endif #ifndef SDL_ANDROID_SCREENKB_KEYCODE_8 -#define SDL_ANDROID_SCREENKB_KEYCODE_8 SDL_ANDROID_KEYCODE_8 +#define SDL_ANDROID_SCREENKB_KEYCODE_8 UNKNOWN #endif #ifndef SDL_ANDROID_SCREENKB_KEYCODE_9 -#define SDL_ANDROID_SCREENKB_KEYCODE_9 SDL_ANDROID_KEYCODE_9 +#define SDL_ANDROID_SCREENKB_KEYCODE_9 UNKNOWN #endif // Queue events to main thread