23 Oct
2024
23 Oct
'24
10:50 a.m.
Huw Davies (@huw) commented about dlls/win32u/dibdrv/graphics.c:
return FALSE; }
+ if (right < left) + { + int tmp = left; + left = right; + right = tmp; + } + if (bottom < top) + { + int tmp = top; + top = bottom; + bottom = tmp; + } +
It would be nice if we could use `order_rect()` for this. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6722#note_85846