hid: using KEY_ERROR_UNDEFINED instead of 0

This commit is contained in:
Devaev Maxim
2018-07-13 06:34:32 +00:00
parent 30f7fc052e
commit 65b3bd8866
3 changed files with 3 additions and 4 deletions

View File

@@ -89,6 +89,6 @@ INLINE KeyboardKeycode keymap(uint8_t code) {
case 24: return KEY_X;
case 25: return KEY_Y;
case 26: return KEY_Z;
default: return 0;
default: return KEY_ERROR_UNDEFINED;
}
}