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
2c754a6e
Commit
2c754a6e
authored
Aug 30, 2003
by
Warren Baird
Committed by
Alexandre Julliard
Aug 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Save the ext alignment information in a 8-bytes metarecord as it
should be.
parent
ca3bfd83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dc.c
dlls/gdi/mfdrv/dc.c
+1
-1
No files found.
dlls/gdi/mfdrv/dc.c
View file @
2c754a6e
...
...
@@ -33,7 +33,7 @@ BOOL MFDRV_RestoreDC( PHYSDEV dev, INT level )
UINT
MFDRV_SetTextAlign
(
PHYSDEV
dev
,
UINT
align
)
{
return
MFDRV_MetaParam
1
(
dev
,
META_SETTEXTALIGN
,
(
WORD
)
align
);
return
MFDRV_MetaParam
2
(
dev
,
META_SETTEXTALIGN
,
HIWORD
(
align
),
LOWORD
(
align
)
);
}
INT
MFDRV_SetBkMode
(
PHYSDEV
dev
,
INT
mode
)
...
...
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