summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpudetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c
index 7a4a1d2206..c5b3ffafc7 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -257,7 +257,7 @@ char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]){
i += 50; /* for rounding */
snprintf(cpuspeed,15, " %d.%d MHz", i/1000, (i/100)%10);
} else {
- i += 500; /* for rounding */
+ //i += 500; /* for rounding */
snprintf(cpuspeed,15, " %d MHz", i/1000);
}
} else { /* No TSC Support */