mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Disable editor on Android (like Steam Deck)
This commit is contained in:
parent
945823ca30
commit
9d1d994f57
1 changed files with 4 additions and 0 deletions
|
@ -159,7 +159,11 @@ bool BUTTONGLYPHS_keyboard_is_available(void)
|
|||
return true;
|
||||
}
|
||||
|
||||
#ifdef __ANDROID__
|
||||
return false;
|
||||
#else
|
||||
return !SDL_GetHintBoolean("SteamDeck", SDL_FALSE);
|
||||
#endif
|
||||
}
|
||||
|
||||
bool BUTTONGLYPHS_keyboard_is_active(void)
|
||||
|
|
Loading…
Reference in a new issue