From 0759632788526af51fbd526d6413f95273ba1567 Mon Sep 17 00:00:00 2001 From: Daijiro Fukuda Date: Tue, 24 May 2022 10:50:36 +0900 Subject: [PATCH] Win32: Revert an unneeded fix This fix is not needed. https://docs.microsoft.com/en-us/windows/win32/inputdev/wm-unichar > An application should return zero if it processes this message. --- src/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 444254cd9..31ecbc47a 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -893,7 +893,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l } _glfwInputChar(window, (uint32_t) wParam, getKeyMods(), GLFW_TRUE); - return TRUE; + return 0; } case WM_KEYDOWN: