Fix debug help menu crash

This commit is contained in:
2025-02-28 08:54:53 -06:00
committed by Celtic Minstrel
parent 94b5bcae53
commit b4af09c548

View File

@@ -64,6 +64,8 @@ cKey charToKey(char ch) {
return {false, w('6'), mod_shift};
case '?':
return {false, w('/'), mod_shift};
case '~':
return {false, w('`'), mod_shift};
}
throw std::string {"Tried to convert unsupported char '"} + ch + "' to cKey!";
}