More pretty pretty.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3594
This commit is contained in:
parent
1157cbe2a0
commit
3bc49c24e2
1 changed files with 4 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue