This commit is contained in:
Vadim Lopatin 2017-09-21 13:01:12 +03:00
parent 63217bb577
commit bbe5191ef4
1 changed files with 4 additions and 0 deletions

View File

@ -1595,6 +1595,10 @@ string keyName(uint keyCode) {
return "Space";
case KeyCode.RETURN:
return "Enter";
case KeyCode.KEY_ADD:
return ` "+"`;
case KeyCode.KEY_SUBTRACT:
return ` "-"`;
default:
return format("0x%08x", keyCode);
}