1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-20 21:08:06 +00:00

controller button gluphs

This commit is contained in:
Zeno Rogue
2025-12-11 20:15:01 +01:00
parent 88e778f3fe
commit a64e79fb84
4 changed files with 13 additions and 3 deletions

View File

@@ -242,6 +242,14 @@ EX namespace dialog {
if(k >= 1 && k <= 26) { string s = "Ctrl+"; s += (k+64); return s; }
if(k < 128) { string s; s += k; return s; }
if(k == 508) return "Alt+8";
if(is_joy_index(k, 0)) return "";
if(is_joy_index(k, 1)) return "";
if(is_joy_index(k, 2)) return "";
if(is_joy_index(k, 3)) return "";
if(is_joy_index(k, 0)) return "";
if(is_joy_index(k, 9)) return "";
if(is_joy_index(k, 10)) return "";
return "?";
}