mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-31 14:25:16 +00:00
Release version 0.1.10. Changed core count for Intel Core i5/i7 CPUs. Added CpuidEx function.
This commit is contained in:
@@ -65,7 +65,9 @@ namespace OpenHardwareMonitor.Hardware.CPU {
|
||||
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);
|
||||
|
Reference in New Issue
Block a user