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
3e6d0a37
Commit
3e6d0a37
authored
Feb 20, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix the refresh rate test when running with the Windows 'Standard VGA' driver.
parent
df56b233
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ddrawmodes.c
dlls/ddraw/tests/ddrawmodes.c
+4
-1
No files found.
dlls/ddraw/tests/ddrawmodes.c
View file @
3e6d0a37
...
...
@@ -473,7 +473,10 @@ static void enumdisplaymodes(void)
modes16bpp_cnt
=
0
;
ddsd
.
dwFlags
=
DDSD_PIXELFORMAT
|
DDSD_REFRESHRATE
;
U2
(
ddsd
).
dwRefreshRate
=
1
;
/* Ask for a refresh rate that could not possibly be used. But note that
* the Windows 'Standard VGA' driver claims to run the display at 1Hz!
*/
U2
(
ddsd
).
dwRefreshRate
=
2
;
rc
=
IDirectDraw_EnumDisplayModes
(
lpDD
,
0
,
&
ddsd
,
0
,
enummodescallback_16bit
);
ok
(
rc
==
DD_OK
,
"EnumDisplayModes returned: %x
\n
"
,
rc
);
...
...
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