Removed remnants of Unicode character actions.

master
Camilla Berglund ago%!(EXTRA string=15 years)
parent d7670cf906
commit 64f180a324
  1. 4
      src/window.c

@ -181,13 +181,11 @@ void _glfwInputKey(_GLFWwindow* window, int key, int action)
void _glfwInputChar(_GLFWwindow* window, int character) void _glfwInputChar(_GLFWwindow* window, int character)
{ {
int keyrepeat = 0;
// Valid Unicode (ISO 10646) character? // Valid Unicode (ISO 10646) character?
if (!((character >= 32 && character <= 126) || character >= 160)) if (!((character >= 32 && character <= 126) || character >= 160))
return; return;
if (window->charCallback && (window->keyRepeat || !keyrepeat)) if (window->charCallback)
window->charCallback(window, character); window->charCallback(window, character);
} }

Loading…
Cancel
Save