fix debug help dialog

This commit is contained in:
2025-03-17 13:29:52 -05:00
parent c897aa55a8
commit 9115f6416f

View File

@@ -68,6 +68,10 @@ cKey charToKey(char ch) {
return {false, w('`'), mod_shift};
case '\\':
return {false, w('\\'), mod_none};
case '-':
return {false, w('-'), mod_none};
case '_':
return {false, w('-'), mod_shift};
}
throw std::string {"Tried to convert unsupported char '"} + ch + "' to cKey!";
}