From 0b0a45e077f08a013f1a5141083adee29aa10438 Mon Sep 17 00:00:00 2001 From: nthung-2k5 <72916534+nthung-2k5@users.noreply.github.com> Date: Mon, 24 Jul 2023 09:01:12 +0700 Subject: [PATCH] Add support for receiving control characters --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.c b/src/input.c index 36128e10..7ea74cfa 100644 --- a/src/input.c +++ b/src/input.c @@ -314,7 +314,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)