17 Apr
2025
17 Apr
'25
3:12 p.m.
Alexandros Frantzis (@afrantzis) commented about dlls/winewayland.drv/wayland_pointer.c:
{ INPUT input = {0}; HWND hwnd; - POINT screen; + struct { + double x; + double y; + } screen = {0.0}; How about just using `double screen_x = 0.0, screen_y = 0.0;`? We don't really need to match the previous use of a `POINT`-like type here. I only used that before because we had that type readily available.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7806#note_101283