1
0
Fork 0

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:
Peter Veenstra 2010-05-05 19:12:51 +00:00
parent 3f17468a1f
commit 1157cbe2a0

View file

@ -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);
}
}