From 14d9802ea4e6891a0d6c3ac6081c4107cfd85003 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 6 Dec 2013 12:18:20 -0600 Subject: [PATCH] Oops. Fix a typo in the DriverDetails change. --- Source/Core/VideoCommon/Src/DriverDetails.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/DriverDetails.cpp b/Source/Core/VideoCommon/Src/DriverDetails.cpp index 76fe1f9dba..0c9ca098a6 100644 --- a/Source/Core/VideoCommon/Src/DriverDetails.cpp +++ b/Source/Core/VideoCommon/Src/DriverDetails.cpp @@ -86,7 +86,7 @@ namespace DriverDetails for(auto& bug : m_known_bugs) { if( - ( bug.m_vendor & m_vendor ) && + ( bug.m_os & m_os ) && ( bug.m_vendor == m_vendor || bug.m_vendor == VENDOR_ALL ) && ( bug.m_driver == m_driver || bug.m_driver == DRIVER_ALL ) && ( bug.m_versionstart <= m_version || bug.m_versionstart == -1 ) &&