1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-17 01:58:29 +02:00

Disable editor on Android (like Steam Deck)

This commit is contained in:
leo60228 2023-09-06 22:24:41 -04:00 committed by Misa Elizabeth Kai
parent 945823ca30
commit 9d1d994f57

View File

@ -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)