1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Check SteamDeck in keyboard_is_available

This commit is contained in:
AllyTally 2023-08-23 15:15:39 -03:00 committed by Misa Elizabeth Kai
parent a537492d9c
commit c4db7ca51a

View file

@ -152,7 +152,7 @@ bool BUTTONGLYPHS_keyboard_is_available(void)
{ {
/* Returns true if it makes sense to show button hints that are only available /* Returns true if it makes sense to show button hints that are only available
* on keyboards (like press M to mute), false if we're on a console. */ * on keyboards (like press M to mute), false if we're on a console. */
return true; return !SDL_GetHintBoolean("SteamDeck", SDL_FALSE);
} }
bool BUTTONGLYPHS_keyboard_is_active(void) bool BUTTONGLYPHS_keyboard_is_active(void)