This commit is contained in:
Nguyễn Trường Hưng (Harlow Nylvesky) 2025-07-07 02:08:40 +02:00 committed by GitHub
commit 3fcdf90d15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)