http://bugs.winehq.org/show_bug.cgi?id=27924
Summary: Detection of NVIDIA GeForce GTX560 Ti not being detected Product: Wine Version: 1.3.25 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: directx-d3d AssignedTo: wine-bugs@winehq.org ReportedBy: gwen@derpymail.com
Created an attachment (id=35725) --> (http://bugs.winehq.org/attachment.cgi?id=35725) patch that fixes the problem
A GeForce Gtx560 Ti GPU is not being detected in current build.
In the first part of line 1515 in the directx.c file "GTX 560 TI" needs to be written with a lowercase 'i' instead of an uppercase one.
This makes the correct line look like this:
{"GTX 560 Ti", CARD_NVIDIA_GEFORCE_GTX560}, /* Geforce 500 - midend */
same issue in 1153 which I altered in:
{HW_VENDOR_NVIDIA, CARD_NVIDIA_GEFORCE_GTX560, "NVIDIA GeForce GTX 560 Ti", DRIVER_NVIDIA_GEFORCE6, 1024},
Now everything is working fine again.