diff -r ac4bfce27a02 -r e6832d4b89d2 Hardware/CPU/AMD10CPU.cs --- a/Hardware/CPU/AMD10CPU.cs Tue Feb 02 18:35:23 2010 +0000 +++ b/Hardware/CPU/AMD10CPU.cs Tue Feb 02 21:58:54 2010 +0000 @@ -65,7 +65,9 @@ coreCount = (cpuidExtData[8, 2] & 0xFF) + 1; // AMD family 10h processors support only one temperature sensor - coreTemperature = new Sensor("Core", 0, SensorType.Temperature, this); + coreTemperature = new Sensor( + "Core" + (coreCount > 1 ? " #1 - #" + coreCount : ""), 0, + SensorType.Temperature, this); pciAddress = WinRing0.FindPciDeviceById(PCI_AMD_VENDOR_ID, PCI_AMD_10H_MISCELLANEOUS_DEVICE_ID, 0);