Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7777a8ea
Commit
7777a8ea
authored
Feb 03, 2007
by
Felix Nawothnig
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Fix offset calculation in PATH_ExtTextOut for >1 chars.
parent
e915a3cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
path.c
dlls/gdi32/path.c
+1
-1
No files found.
dlls/gdi32/path.c
View file @
7777a8ea
...
...
@@ -1350,6 +1350,7 @@ BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
LOGFONTW
lf
;
POINT
org
;
HDC
hdc
=
dc
->
hSelf
;
INT
offset
=
0
,
xoff
=
0
,
yoff
=
0
;
TRACE
(
"%p, %d, %d, %08x, %s, %s, %d, %p)
\n
"
,
hdc
,
x
,
y
,
flags
,
wine_dbgstr_rect
(
lprc
),
debugstr_wn
(
str
,
count
),
count
,
dx
);
...
...
@@ -1372,7 +1373,6 @@ BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc,
for
(
idx
=
0
;
idx
<
count
;
idx
++
)
{
INT
offset
=
0
,
xoff
=
0
,
yoff
=
0
;
GLYPHMETRICS
gm
;
DWORD
dwSize
;
void
*
outline
;
...
...
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