1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-28 13:31:19 +00:00

do not display 'press F1 or right click for help' on SteamDeck

This commit is contained in:
Zeno Rogue
2025-12-12 10:19:12 +01:00
parent a1d21aac2a
commit e46604a3b9

View File

@@ -229,7 +229,7 @@ EX void buildHelpText() {
}
EX string standard_help() {
if(nohelp == 2) return "";
if(nohelp == 2 || dialog::display_keys == 3) return "";
return XLAT("Press F1 or right click for help");
}