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
a66efc26
Commit
a66efc26
authored
Jan 14, 2013
by
Huw Davies
Committed by
Alexandre Julliard
Jan 14, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Don't invert the y-offsets in RTL mode.
parent
ca5ded28
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
usp10.c
dlls/usp10/usp10.c
+3
-3
No files found.
dlls/usp10/usp10.c
View file @
a66efc26
...
...
@@ -3282,15 +3282,15 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN
if
(
i
==
0
)
{
x
+=
pGoffset
[
orig_index
].
du
*
dir
;
y
+=
pGoffset
[
orig_index
].
dv
*
dir
;
y
+=
pGoffset
[
orig_index
].
dv
;
}
else
{
lpDx
[(
i
-
1
)
*
2
]
+=
pGoffset
[
orig_index
].
du
*
dir
;
lpDx
[(
i
-
1
)
*
2
+
1
]
+=
pGoffset
[
orig_index
].
dv
*
dir
;
lpDx
[(
i
-
1
)
*
2
+
1
]
+=
pGoffset
[
orig_index
].
dv
;
}
lpDx
[
i
*
2
]
-=
pGoffset
[
orig_index
].
du
*
dir
;
lpDx
[
i
*
2
+
1
]
-=
pGoffset
[
orig_index
].
dv
*
dir
;
lpDx
[
i
*
2
+
1
]
-=
pGoffset
[
orig_index
].
dv
;
}
}
...
...
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