Commit d8459f32 authored by Dave Hawkes's avatar Dave Hawkes Committed by Alexandre Julliard

MoveToEx: return TRUE even if there is no driver implementation.

parent d837d9db
......@@ -103,7 +103,7 @@ BOOL WINAPI MoveToEx( HDC hdc, INT x, INT y, LPPOINT pt )
if(dc->funcs->pMoveToEx)
return dc->funcs->pMoveToEx(dc,x,y,pt);
return FALSE;
return TRUE;
}
......
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