Release version 0.1.9. Fixed ATI GPU id check.
authormoel.mich
Mon, 01 Feb 2010 23:10:05 +0000
changeset 20022f9fc23784
parent 19 890e8fca7f33
child 21 ac4bfce27a02
Release version 0.1.9. Fixed ATI GPU id check.
Hardware/ATI/ATIGroup.cs
Properties/AssemblyInfo.cs
     1.1 --- a/Hardware/ATI/ATIGroup.cs	Mon Feb 01 22:11:06 2010 +0000
     1.2 +++ b/Hardware/ATI/ATIGroup.cs	Mon Feb 01 23:10:05 2010 +0000
     1.3 @@ -101,7 +101,7 @@
     1.4                    report.Append("AdapterID: 0x");
     1.5                    report.AppendLine(adapterID.ToString("X"));
     1.6  
     1.7 -                  if (adapterID > 0 && 
     1.8 +                  if (adapterID != 0 && 
     1.9                      adapterInfo[i].UDID != "" && 
    1.10                      adapterInfo[i].Present > 0 &&
    1.11                      (adapterInfo[i].VendorID == ADL.ATI_VENDOR_ID1 ||
     2.1 --- a/Properties/AssemblyInfo.cs	Mon Feb 01 22:11:06 2010 +0000
     2.2 +++ b/Properties/AssemblyInfo.cs	Mon Feb 01 23:10:05 2010 +0000
     2.3 @@ -69,5 +69,5 @@
     2.4  // You can specify all the values or you can default the Build and Revision Numbers 
     2.5  // by using the '*' as shown below:
     2.6  // [assembly: AssemblyVersion("1.0.*")]
     2.7 -[assembly: AssemblyVersion("0.1.8.0")]
     2.8 -[assembly: AssemblyFileVersion("0.1.8.0")]
     2.9 +[assembly: AssemblyVersion("0.1.9.0")]
    2.10 +[assembly: AssemblyFileVersion("0.1.9.0")]