Hardware/ATI/ATIGPU.cs
changeset 109 70d0c3102424
parent 80 129a9a1d514f
child 110 411b72b73d8f
     1.1 --- a/Hardware/ATI/ATIGPU.cs	Tue May 04 17:32:41 2010 +0000
     1.2 +++ b/Hardware/ATI/ATIGPU.cs	Thu May 06 19:20:38 2010 +0000
     1.3 @@ -69,7 +69,8 @@
     1.4  
     1.5        this.temperature = 
     1.6          new Sensor("GPU Core", 0, SensorType.Temperature, this);
     1.7 -      this.fan = new Sensor("GPU", 0, speedInfo.MaxRPM, SensorType.Fan, this);
     1.8 +      this.fan = new Sensor("GPU", 0, speedInfo.MaxRPM, SensorType.Fan, this,
     1.9 +        null);
    1.10        this.coreClock = new Sensor("GPU Core", 0, SensorType.Clock, this);
    1.11        this.memoryClock = new Sensor("GPU Memory", 1, SensorType.Clock, this);
    1.12        this.coreVoltage = new Sensor("GPU Core", 0, SensorType.Voltage, this);
    1.13 @@ -85,8 +86,8 @@
    1.14        get { return name; }
    1.15      }
    1.16  
    1.17 -    public string Identifier {
    1.18 -      get { return "/atigpu/" + adapterIndex; }
    1.19 +    public Identifier Identifier {
    1.20 +      get { return new Identifier("atigpu", adapterIndex.ToString()); }
    1.21      }
    1.22  
    1.23      public Image Icon {