Jaime Rave : wined3d: Fix vendor detection when using an Intel X4500HD.

Alexandre Julliard julliard at winehq.org
Wed Sep 9 09:55:50 CDT 2009


Module: wine
Branch: master
Commit: 4700038fdf32c8b5392bb78e35d2f71d4deae6e6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4700038fdf32c8b5392bb78e35d2f71d4deae6e6

Author: Jaime Rave <jaimerave at ubuntu-co.com>
Date:   Tue Sep  8 10:47:34 2009 -0500

wined3d: Fix vendor detection when using an Intel X4500HD.

---

 dlls/wined3d/directx.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c
index 9c79bd5..129cbba 100644
--- a/dlls/wined3d/directx.c
+++ b/dlls/wined3d/directx.c
@@ -987,7 +987,7 @@ static GL_Vendors wined3d_guess_vendor(const char *gl_vendor, const char *gl_ren
         return VENDOR_INTEL;
 
     if (strstr(gl_vendor, "Mesa")
-            || strstr(gl_vendor, "Tungsten Graphics, Inc."))
+            || strstr(gl_vendor, "Tungsten Graphics, Inc"))
         return VENDOR_MESA;
 
     FIXME_(d3d_caps)("Received unrecognized GL_VENDOR %s. Returning VENDOR_WINE.\n", debugstr_a(gl_vendor));




More information about the wine-cvs mailing list