device: disable message loop in WinInputDeviceManager for now

This was a change in aadc62a96c18d9911428da041e611f8c3b01a444 but seems to cause other problems, see #562
This commit is contained in:
rdb 2019-03-02 12:39:42 +01:00
parent 63fa340a51
commit 7f4491cb98

View File

@ -397,11 +397,13 @@ on_input_device_removal(HANDLE handle) {
*/
void WinInputDeviceManager::
update() {
/*
MSG msg;
while (PeekMessage(&msg, _message_hwnd, WM_INPUT_DEVICE_CHANGE, WM_INPUT, PM_REMOVE)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
*/
}
/**