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
cbc6ef9e
Commit
cbc6ef9e
authored
Jul 21, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Avoid sizeof in a trace.
parent
84baad06
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
d3d9ex.c
dlls/d3d9/tests/d3d9ex.c
+1
-1
No files found.
dlls/d3d9/tests/d3d9ex.c
View file @
cbc6ef9e
...
...
@@ -302,7 +302,7 @@ static void test_get_adapter_displaymode_ex(void)
hr
=
IDirect3D9_GetAdapterDisplayMode
(
d3d9
,
D3DADAPTER_DEFAULT
,
&
mode
);
ok
(
SUCCEEDED
(
hr
),
"GetAdapterDisplayMode failed, hr %#x.
\n
"
,
hr
);
ok
(
mode_ex
.
Size
==
sizeof
(
D3DDISPLAYMODEEX
),
"size is %d
instead of %d
\n
"
,
mode_ex
.
Size
,
sizeof
(
D3DDISPLAYMODEEX
)
);
ok
(
mode_ex
.
Size
==
sizeof
(
D3DDISPLAYMODEEX
),
"size is %d
\n
"
,
mode_ex
.
Size
);
todo_wine
ok
(
mode_ex
.
Width
==
mode
.
Width
,
"width is %d instead of %d
\n
"
,
mode_ex
.
Width
,
mode
.
Width
);
todo_wine
ok
(
mode_ex
.
Height
==
mode
.
Height
,
"height is %d instead of %d
\n
"
,
mode_ex
.
Height
,
mode
.
Height
);
todo_wine
ok
(
mode_ex
.
RefreshRate
==
mode
.
RefreshRate
,
"RefreshRate is %d instead of %d
\n
"
,
mode_ex
.
RefreshRate
,
mode
.
RefreshRate
);
...
...
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