Commit fcea5484 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32: The offsets should be signed.

parent b7bb3538
......@@ -368,7 +368,7 @@ typedef struct
static int clip_line(const POINT *start, const POINT *end, const RECT *clip,
const bres_params *params, POINT *pt1, POINT *pt2)
{
unsigned int n, m;
int m, n;
BOOL clipped = FALSE;
DWORD start_oc, end_oc;
const int bias = params->bias;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment