1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

separated highlight

This commit is contained in:
Zeno Rogue
2020-09-15 20:39:15 +02:00
parent e74eeca2c3
commit cea3da31fc
5 changed files with 19 additions and 8 deletions

View File

@@ -162,6 +162,7 @@ EX namespace dialog {
if(k == 32) return "space";
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";
return "?";
}