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) {