From d656d7558b85d15bf6752ebc2d55cd1d2de7fbef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=B6ller?= Date: Wed, 17 Feb 2010 20:45:31 +0000 Subject: [PATCH] Fixed AMD family 0Fh temperature reading of first core. --- Hardware/CPU/AMD0FCPU.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hardware/CPU/AMD0FCPU.cs b/Hardware/CPU/AMD0FCPU.cs index baac5a4..7ce2ce2 100644 --- a/Hardware/CPU/AMD0FCPU.cs +++ b/Hardware/CPU/AMD0FCPU.cs @@ -61,7 +61,7 @@ namespace OpenHardwareMonitor.Hardware.CPU { private const ushort PCI_AMD_VENDOR_ID = 0x1022; private const ushort PCI_AMD_0FH_MISCELLANEOUS_DEVICE_ID = 0x1103; private const uint THERMTRIP_STATUS_REGISTER = 0xE4; - private const byte THERM_SENSE_CORE_SEL_CPU0 = 0x2; + private const byte THERM_SENSE_CORE_SEL_CPU0 = 0x4; private const byte THERM_SENSE_CORE_SEL_CPU1 = 0x0; public AMD0FCPU(string name, uint family, uint model, uint stepping,