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.