Hardware/CPU/CPUGroup.cs
changeset 191 6545fa3ae298
parent 182 4801e9eaf979
child 195 0ee888c485d5
     1.1 --- a/Hardware/CPU/CPUGroup.cs	Sat Sep 18 19:56:39 2010 +0000
     1.2 +++ b/Hardware/CPU/CPUGroup.cs	Mon Sep 20 19:28:25 2010 +0000
     1.3 @@ -119,7 +119,7 @@
     1.4              
     1.5          CPUID[][] coreThreads = GroupThreadsByCore(threads);
     1.6  
     1.7 -        this.threads[index] = coreThreads;        
     1.8 +        this.threads[index] = coreThreads;
     1.9  
    1.10          switch (threads[0].Vendor) {
    1.11            case Vendor.Intel:
    1.12 @@ -134,9 +134,11 @@
    1.13                  hardware.Add(new AMD10CPU(index, coreThreads, settings));
    1.14                  break;
    1.15                default:
    1.16 +                hardware.Add(new GenericCPU(index, coreThreads, settings));
    1.17                  break;
    1.18              } break;
    1.19            default:
    1.20 +            hardware.Add(new GenericCPU(index, coreThreads, settings));
    1.21              break;
    1.22          }
    1.23