# HG changeset patch
# User moel.mich
# Date 1266439531 0
# Node ID 7d83a09511f057449069169141a880122621a0d8
# Parent  b418098ceca3e75f66d4c16162a367af2a83507b
Fixed AMD family 0Fh temperature reading of first core.

diff -r b418098ceca3 -r 7d83a09511f0 Hardware/CPU/AMD0FCPU.cs
--- a/Hardware/CPU/AMD0FCPU.cs	Wed Feb 17 20:22:21 2010 +0000
+++ b/Hardware/CPU/AMD0FCPU.cs	Wed Feb 17 20:45:31 2010 +0000
@@ -61,7 +61,7 @@
     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,