diff -r 19b1e150e7af -r c34cbcc7df66 Hardware/ATI/ATIGroup.cs --- a/Hardware/ATI/ATIGroup.cs Sun Jan 15 14:05:52 2012 +0000 +++ b/Hardware/ATI/ATIGroup.cs Sun Jan 15 15:07:23 2012 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2010 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -87,8 +87,8 @@ report.Append("Present: "); report.AppendLine(adapterInfo[i].Present.ToString( CultureInfo.InvariantCulture)); - report.Append("VendorID: "); - report.AppendLine(adapterInfo[i].VendorID.ToString( + report.Append("VendorID: 0x"); + report.AppendLine(adapterInfo[i].VendorID.ToString("X", CultureInfo.InvariantCulture)); report.Append("BusNumber: "); report.AppendLine(adapterInfo[i].BusNumber.ToString( @@ -104,8 +104,8 @@ CultureInfo.InvariantCulture)); if (!string.IsNullOrEmpty(adapterInfo[i].UDID) && - (adapterInfo[i].VendorID == ADL.ATI_VENDOR_ID1 || - adapterInfo[i].VendorID == ADL.ATI_VENDOR_ID2)) { + adapterInfo[i].VendorID == ADL.ATI_VENDOR_ID) + { bool found = false; foreach (ATIGPU gpu in hardware) if (gpu.BusNumber == adapterInfo[i].BusNumber &&