From b939bfe8708923aee70963fe1f0ce83cba594d2c Mon Sep 17 00:00:00 2001 From: Reece H. Dunn Date: Fri, 25 Jan 2008 07:57:15 +0000 Subject: [PATCH] gdiplus: fix the bezier arc path test (on all platforms). --- dlls/gdiplus/tests/graphicspath.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/gdiplus/tests/graphicspath.c b/dlls/gdiplus/tests/graphicspath.c index b2d5ef9..44e4020 100644 --- a/dlls/gdiplus/tests/graphicspath.c +++ b/dlls/gdiplus/tests/graphicspath.c @@ -224,7 +224,7 @@ static path_test_t arc_path[] = { {187.9, 716.5, PathPointTypeBezier, 0, 0}, /*34*/ {293.1, 841.8, PathPointTypeBezier, 0, 0}, /*35*/ {450.9, 824.1, PathPointTypeBezier, 0, 0}, /*36*/ - {540.4, 676.9, PathPointTypeBezier, 0, 0} /*37*/ + {540.4, 676.9, PathPointTypeBezier | PathPointTypeCloseSubpath, 0, 0} /*37*/ }; static void test_arc(void) -- 1.5.3.5