mirror of
https://github.com/glfw/glfw.git
synced 2025-10-02 04:41:17 +00:00
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:
parent
52f0ca1ab6
commit
0759632788
@ -893,7 +893,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l
|
|||||||
}
|
}
|
||||||
|
|
||||||
_glfwInputChar(window, (uint32_t) wParam, getKeyMods(), GLFW_TRUE);
|
_glfwInputChar(window, (uint32_t) wParam, getKeyMods(), GLFW_TRUE);
|
||||||
return TRUE;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
case WM_KEYDOWN:
|
case WM_KEYDOWN:
|
||||||
|
Loading…
Reference in New Issue
Block a user