mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 05:25:07 +00:00
Merge 0b0a45e077
into e7ea71be03
This commit is contained in:
commit
02d9cdf100
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ void _glfwInputChar(_GLFWwindow* window, uint32_t codepoint, int mods, GLFWbool
|
|||
assert(mods == (mods & GLFW_MOD_MASK));
|
||||
assert(plain == GLFW_TRUE || plain == GLFW_FALSE);
|
||||
|
||||
if (codepoint < 32 || (codepoint > 126 && codepoint < 160))
|
||||
if (codepoint > 126 && codepoint < 160)
|
||||
return;
|
||||
|
||||
if (!window->lockKeyMods)
|
||||
|
|
Loading…
Add table
Reference in a new issue