Fixed the initialization of the TSC estimating code.

This commit is contained in:
Michael Möller
2010-10-01 19:01:09 +00:00
parent 1e21129803
commit 9619107616
3 changed files with 19 additions and 14 deletions

View File

@@ -64,8 +64,6 @@ namespace OpenHardwareMonitor.Hardware.CPU {
private double timeStampCounterMultiplier;
private StringBuilder debug = new StringBuilder();
public AMD10CPU(int processorIndex, CPUID[][] cpuid, ISettings settings)
: base(processorIndex, cpuid, settings)
{
@@ -180,9 +178,6 @@ namespace OpenHardwareMonitor.Hardware.CPU {
CultureInfo.InvariantCulture));
r.AppendLine();
r.Append(debug);
r.AppendLine();
return r.ToString();
}