From 3bc49c24e2b3b2174b2372b00da4f5faf0284efd Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Wed, 5 May 2010 19:22:33 +0000 Subject: [PATCH] More pretty pretty. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3594 --- src/cpu/cpu.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cpu/cpu.cpp b/src/cpu/cpu.cpp index 8d92572c..b49d0656 100644 --- a/src/cpu/cpu.cpp +++ b/src/cpu/cpu.cpp @@ -2122,7 +2122,10 @@ static void CPU_CycleDecrease(bool pressed) { if (CPU_CycleAutoAdjust) { CPU_CyclePercUsed-=5; if (CPU_CyclePercUsed<=0) CPU_CyclePercUsed=1; - LOG_MSG("CPU speed: max %d percent. If the game runs too fast, try a fixed cycles amount in DOSBox's options.",CPU_CyclePercUsed); + if(CPU_CyclePercUsed <=70) + LOG_MSG("CPU speed: max %d percent. If the game runs too fast, try a fixed cycles amount in DOSBox's options.",CPU_CyclePercUsed); + else + LOG_MSG("CPU speed: max %d percent.",CPU_CyclePercUsed); GFX_SetTitle(CPU_CyclePercUsed,-1,false); } else { if (CPU_CycleDown < 100) {