From d8459f322c35c54a448621afd337fc699311218a Mon Sep 17 00:00:00 2001 From: Dave Hawkes Date: Tue, 20 Jun 2000 20:15:38 +0000 Subject: [PATCH] MoveToEx: return TRUE even if there is no driver implementation. --- graphics/painting.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/painting.c b/graphics/painting.c index a507c61c07..a8a1312b70 100644 --- a/graphics/painting.c +++ b/graphics/painting.c @@ -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; } -- 2.32.0.93.g670b81a890