1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00

Add check for keyboard_is_active

This commit is contained in:
AllyTally 2023-08-24 14:51:09 -03:00 committed by Misa Elizabeth Kai
parent 7f03b00635
commit 3ca28a5944

View File

@ -152,6 +152,13 @@ bool BUTTONGLYPHS_keyboard_is_available(void)
{
/* 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. */
if (BUTTONGLYPHS_keyboard_is_active())
{
/* The keyboard is active, so there HAS to be a keyboard available */
return true;
}
return !SDL_GetHintBoolean("SteamDeck", SDL_FALSE);
}