Disable keypress when stylus hovers over screen for Galaxy Note, also fixed bug in my prev commit

This commit is contained in:
pelya
2012-06-08 18:53:20 +03:00
parent 4175915a1c
commit 4e69f9645f
4 changed files with 25 additions and 3 deletions

View File

@@ -792,7 +792,7 @@ JAVA_EXPORT_NAME(DemoGLSurfaceView_nativeKey) ( JNIEnv* env, jobject thiz, jint
return 1;
}
if( TranslateKey(key) == SDLK_NO_REMAP )
if( TranslateKey(key) == SDLK_NO_REMAP || TranslateKey(key) == SDLK_UNKNOWN )
return 0;
SDL_ANDROID_MainThreadPushKeyboardKey( action ? SDL_PRESSED : SDL_RELEASED, TranslateKey(key) );