Make it a bit more pretty.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3593
This commit is contained in:
parent
3f17468a1f
commit
1157cbe2a0
1 changed files with 4 additions and 1 deletions
|
@ -2109,7 +2109,10 @@ static void CPU_CycleIncrease(bool pressed) {
|
|||
|
||||
CPU_CycleLeft=0;CPU_Cycles=0;
|
||||
if (CPU_CycleMax==old_cycles) CPU_CycleMax++;
|
||||
LOG_MSG("CPU speed: fixed %d cycles. If you need more than 20000, try core=dynamic in DOSBox's options.",CPU_CycleMax);
|
||||
if(CPU_CycleMax > 15000 )
|
||||
LOG_MSG("CPU speed: fixed %d cycles. If you need more than 20000, try core=dynamic in DOSBox's options.",CPU_CycleMax);
|
||||
else
|
||||
LOG_MSG("CPU speed: fixed %d cycles.",CPU_CycleMax);
|
||||
GFX_SetTitle(CPU_CycleMax,-1,false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue