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
b5738dcc
Commit
b5738dcc
authored
Mar 05, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Fix a test failure on Win9x/WinMe.
parent
0a6ac957
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
bitmap.c
dlls/gdi32/tests/bitmap.c
+3
-1
No files found.
dlls/gdi32/tests/bitmap.c
View file @
b5738dcc
...
...
@@ -364,7 +364,9 @@ static void test_dib_info(HBITMAP hbm, const void *bits, const BITMAPINFOHEADER
ok
(
ds
.
dsBmih
.
biSize
==
bmih
->
biSize
,
"%u != %u
\n
"
,
ds
.
dsBmih
.
biSize
,
bmih
->
biSize
);
ok
(
ds
.
dsBmih
.
biWidth
==
bmih
->
biWidth
,
"%d != %d
\n
"
,
ds
.
dsBmih
.
biWidth
,
bmih
->
biWidth
);
ok
(
ds
.
dsBmih
.
biHeight
==
abs
(
bmih
->
biHeight
),
"%d != %d
\n
"
,
ds
.
dsBmih
.
biHeight
,
abs
(
bmih
->
biHeight
));
ok
(
ds
.
dsBmih
.
biHeight
==
abs
(
bmih
->
biHeight
)
||
broken
(
ds
.
dsBmih
.
biHeight
==
bmih
->
biHeight
),
/* Win9x/WinMe */
"%d != %d
\n
"
,
ds
.
dsBmih
.
biHeight
,
abs
(
bmih
->
biHeight
));
ok
(
ds
.
dsBmih
.
biPlanes
==
bmih
->
biPlanes
,
"%u != %u
\n
"
,
ds
.
dsBmih
.
biPlanes
,
bmih
->
biPlanes
);
ok
(
ds
.
dsBmih
.
biBitCount
==
bmih
->
biBitCount
,
"%u != %u
\n
"
,
ds
.
dsBmih
.
biBitCount
,
bmih
->
biBitCount
);
ok
(
ds
.
dsBmih
.
biCompression
==
bmih
->
biCompression
,
"%u != %u
\n
"
,
ds
.
dsBmih
.
biCompression
,
bmih
->
biCompression
);
...
...
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