summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-22 19:44:57 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-22 19:44:57 +0300
commitce1b6c9c3c0166853089a247add9c2baa016c5f0 (patch)
treed565a5de14014cd38caee94079905757e095d132 /src
parentb792606533096577b91a7b744813f62984d31d09 (diff)
downloadplus-ce1b6c9c3c0166853089a247add9c2baa016c5f0.tar.gz
plus-ce1b6c9c3c0166853089a247add9c2baa016c5f0.tar.bz2
plus-ce1b6c9c3c0166853089a247add9c2baa016c5f0.tar.xz
plus-ce1b6c9c3c0166853089a247add9c2baa016c5f0.zip
by default assign back button to quit in SDL2 on Android.
Diffstat (limited to 'src')
-rw-r--r--src/gui/sdlinput.cpp3
-rw-r--r--src/input/keyboarddata.h8
2 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/sdlinput.cpp b/src/gui/sdlinput.cpp
index a942d6909..c869cd99b 100644
--- a/src/gui/sdlinput.cpp
+++ b/src/gui/sdlinput.cpp
@@ -369,6 +369,9 @@ int SDLInput::convertKeyCharacter(const SDL_Event &event)
}
break;
case SDLK_ESCAPE:
+#ifdef USE_SDL2
+ case SDLK_AC_BACK:
+#endif
value = Key::ESCAPE;
break;
case SDLK_DELETE:
diff --git a/src/input/keyboarddata.h b/src/input/keyboarddata.h
index bd5395007..e9703eac7 100644
--- a/src/input/keyboarddata.h
+++ b/src/input/keyboarddata.h
@@ -211,7 +211,11 @@ static const KeyData keyData[Input::KEY_TOTAL] = {
COND_NOMODAL | COND_NOAWAY | COND_NONPCINPUT},
{"keyQuit",
INPUT_KEYBOARD, SDLK_ESCAPE,
+#if defined(USE_SDL2) && defined(ANDROID)
+ INPUT_KEYBOARD, SDLK_AC_BACK,
+#else
INPUT_UNKNOWN, Input::KEY_NO_VALUE,
+#endif
Input::GRP_DEFAULT,
&ActionManager::quit,
Input::KEY_NO_VALUE, 50,
@@ -1857,7 +1861,11 @@ static const KeyData keyData[Input::KEY_TOTAL] = {
COND_DEFAULT},
{"keyGUICancel",
INPUT_KEYBOARD, SDLK_ESCAPE,
+#if defined(USE_SDL2) && defined(ANDROID)
+ INPUT_KEYBOARD, SDLK_AC_BACK,
+#else
INPUT_UNKNOWN, Input::KEY_NO_VALUE,
+#endif
Input::GRP_GUICHAN,
nullptr,
Input::KEY_NO_VALUE, 50,