@rbernon I also don’t fully understand whether I should change rawmouse->usFlags as in the wine-staging patch.
``` - rawmouse->usFlags = MOUSE_MOVE_RELATIVE; + rawmouse->usFlags = 0; + if (flags & MOUSEEVENTF_ABSOLUTE) rawmouse->usFlags |= MOUSE_MOVE_ABSOLUTE; + if (flags & MOUSEEVENTF_VIRTUALDESK) rawmouse->usFlags |= MOUSE_VIRTUAL_DESKTOP; ```
I'm confused by these changes in Proton. https://github.com/ValveSoftware/wine/commit/8fa1095bb13ea7f366ade8c4345bb3a... https://github.com/ValveSoftware/wine/commit/dda751149ea103082d9530f15b701b7...