Improve error description for invalid scancodes

This commit is contained in:
Camilla Löwy
2021-07-19 19:05:32 +02:00
parent 3dc7349c35
commit 56092814f3
4 changed files with 9 additions and 3 deletions
+6
View File
@@ -524,6 +524,12 @@ const char* _glfwPlatformGetClipboardString(void)
const char* _glfwPlatformGetScancodeName(int scancode)
{
if (scancode < GLFW_KEY_SPACE || scancode > GLFW_KEY_LAST)
{
_glfwInputError(GLFW_INVALID_VALUE, "Invalid scancode %i", scancode);
return NULL;
}
switch (scancode)
{
case GLFW_KEY_APOSTROPHE: