From 50fee59b29f4718c24b8efad714e866ba25a34d6 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Wed, 5 Mar 2025 16:07:06 +1100 Subject: [PATCH] [client] app: fix broken keyboard input after imgui update --- client/src/app.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/app.c b/client/src/app.c index 9dd47afe..7b87fe1f 100644 --- a/client/src/app.c +++ b/client/src/app.c @@ -365,10 +365,7 @@ void app_handleKeyPress(int sc, int charcode) return; if (purespice_keyDown(ps2)) - { - if (linux_to_imgui[sc]) - ImGuiIO_AddKeyEvent(g_state.io, linux_to_imgui[sc], true); - } + g_state.keyDown[sc] = true; else { DEBUG_ERROR("app_handleKeyPress: failed to send message");