Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
626a3c6a
Commit
626a3c6a
authored
Nov 14, 2013
by
Patrick Rudolph
Committed by
Alexandre Julliard
Nov 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Fill dwNumFourCCCodes in ddraw7_GetCaps.
parent
dd545c3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
ddraw.c
dlls/ddraw/ddraw.c
+11
-2
No files found.
dlls/ddraw/ddraw.c
View file @
626a3c6a
...
...
@@ -1474,9 +1474,18 @@ static HRESULT WINAPI ddraw7_GetCaps(IDirectDraw7 *iface, DDCAPS *DriverCaps, DD
}
hr
=
IDirectDraw7_GetAvailableVidMem
(
iface
,
&
ddscaps
,
&
caps
.
dwVidMemTotal
,
&
caps
.
dwVidMemFree
);
wined3d_mutex_unlock
();
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
WARN
(
"IDirectDraw7::GetAvailableVidMem failed
\n
"
);
wined3d_mutex_unlock
();
return
hr
;
}
hr
=
IDirectDraw7_GetFourCCCodes
(
iface
,
&
caps
.
dwNumFourCCCodes
,
NULL
);
wined3d_mutex_unlock
();
if
(
FAILED
(
hr
))
{
WARN
(
"IDirectDraw7::GetFourCCCodes failed
\n
"
);
return
hr
;
}
...
...
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