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
0bcb2de6
Commit
0bcb2de6
authored
Jun 26, 2019
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Handle Windows 8.1 in wined3d_driver_info_init().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
68c66557
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
directx.c
dlls/wined3d/directx.c
+8
-6
No files found.
dlls/wined3d/directx.c
View file @
0bcb2de6
...
...
@@ -115,11 +115,13 @@ ULONG CDECL wined3d_decref(struct wined3d *wined3d)
* The driver version has the form "x.y.z.w".
*
* "x" is the Windows version the driver is meant for:
* 4 -> 95/98/NT4
* 5 -> 2000
* 6 -> 2000/XP
* 7 -> Vista
* 8 -> Win 7
* 4 -> 95/98/NT4
* 5 -> 2000
* 6 -> 2000/XP
* 7 -> Vista
* 8 -> Windows 7
* 9 -> Windows 8
* 10 -> Windows 10
*
* "y" is the maximum Direct3D version the driver supports.
* y -> d3d version mapping:
...
...
@@ -589,7 +591,7 @@ void wined3d_driver_info_init(struct wined3d_driver_info *driver_info,
}
else
{
if
(
os_version
.
dwMinorVersion
>
2
)
if
(
os_version
.
dwMinorVersion
>
3
)
{
FIXME
(
"Unhandled OS version %u.%u, reporting Win 8.
\n
"
,
os_version
.
dwMajorVersion
,
os_version
.
dwMinorVersion
);
...
...
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