1
0
Fork 0

More pretty pretty.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3594
This commit is contained in:
Peter Veenstra 2010-05-05 19:22:33 +00:00
parent 1157cbe2a0
commit 3bc49c24e2

View file

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