Commit 4700038f authored by Jaime Rave's avatar Jaime Rave Committed by Alexandre Julliard

wined3d: Fix vendor detection when using an Intel X4500HD.

parent 6181466b
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment