Module: wine Branch: master Commit: d1971a458bbeee1f56e8ee2ac4e3bc4681c06d63 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d1971a458bbeee1f56e8ee2ac4...
Author: Ilya Shpigor shpigor@etersoft.ru Date: Mon Apr 26 14:12:16 2010 +0400
wineps.drv: Start a new current path in PSDRV_PolyPolygon.
---
dlls/wineps.drv/graphics.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/wineps.drv/graphics.c b/dlls/wineps.drv/graphics.c index e9c66d2..16a4482 100644 --- a/dlls/wineps.drv/graphics.c +++ b/dlls/wineps.drv/graphics.c @@ -396,6 +396,7 @@ BOOL CDECL PSDRV_PolyPolygon( PSDRV_PDEVICE *physDev, const POINT* pts, const IN PSDRV_WriteSpool(physDev, "%PolyPolygon\n",13); PSDRV_SetPen(physDev); PSDRV_SetClip(physDev); + PSDRV_WriteNewPath(physDev);
for(polygon = 0; polygon < polygons; polygon++) { PSDRV_WriteMoveTo(physDev, pt->x, pt->y);