PSDRV_WriteArc shouldn't write a newpath.

This commit is contained in:
Huw D M Davies 1999-07-31 11:11:21 +00:00 committed by Alexandre Julliard
parent dbb4ad8284
commit 79e94a7483
2 changed files with 3 additions and 4 deletions

View File

@ -152,6 +152,9 @@ static BOOL PSDRV_DrawArc( DC *dc, INT left, INT top,
if(lines == 2) /* pie */
PSDRV_WriteMoveTo(dc, x, y);
else
PSDRV_WriteNewPath( dc );
PSDRV_WriteArc(dc, x, y, w, h, start_angle, end_angle);
if(lines == 1 || lines == 2) { /* chord or pie */
PSDRV_WriteClosePath(dc);

View File

@ -511,10 +511,6 @@ BOOL PSDRV_WriteArc(DC *dc, INT x, INT y, INT w, INT h, double ang1,
/* Make angles -ve and swap order because we're working with an upside
down y-axis */
sprintf(buf, psarc, x, y, w, h, -ang2, -ang1);
/* Write newpath operator to ensure there's no line segment drawn
from the current point to the beginning of the arc. */
PSDRV_WriteNewPath( dc );
return PSDRV_WriteSpool(dc, buf, strlen(buf));
}