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.
This commit is contained in:
Daijiro Fukuda 2022-05-24 10:50:36 +09:00
parent 52f0ca1ab6
commit 0759632788

View File

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