Ignore Android's back button when disabling touch

Touch input automatically "disables" when you press a key on your
keyboard. The back button on Android counts as a key press, so let's
just ignore it.
This commit is contained in:
NyakoFox 2024-04-02 18:49:28 -03:00
parent 23fc220903
commit 2943c2fbe1
1 changed files with 5 additions and 1 deletions

View File

@ -598,7 +598,11 @@ void KeyPoll::Poll(void)
switch (evt.type)
{
case SDL_KEYDOWN:
using_touch = false;
if (evt.key.keysym.sym != SDLK_AC_BACK)
{
// If we hit the back button on Android, this doesn't mean we're not using touch
using_touch = false;
}
if (evt.key.repeat == 0)
{
hidemouse = true;