Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2cf3975d
Commit
2cf3975d
authored
Nov 01, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Fix a couple of typos in the path painting function.
Thanks to Octavian Voicu.
parent
3f74c581
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
graphics.c
dlls/wineps.drv/graphics.c
+2
-2
No files found.
dlls/wineps.drv/graphics.c
View file @
2cf3975d
...
...
@@ -540,11 +540,11 @@ static BOOL paint_path( PHYSDEV dev, BOOL stroke, BOOL fill )
if
(
!
points
||
!
types
)
goto
done
;
if
(
GetPath
(
dev
->
hdc
,
points
,
types
,
size
)
==
-
1
)
goto
done
;
if
(
fill
)
PSDRV_SetPen
(
dev
);
if
(
stroke
)
PSDRV_SetPen
(
dev
);
PSDRV_SetClip
(
dev
);
for
(
i
=
0
;
i
<
size
;
i
++
)
{
switch
(
types
[
i
]
&
~
PT_CLOSEFIGURE
)
switch
(
types
[
i
])
{
case
PT_MOVETO
:
PSDRV_WriteMoveTo
(
dev
,
points
[
i
].
x
,
points
[
i
].
y
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment