From 70cda9f5776c94370200952171ec8fc3dd1232d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Strohh=C3=A4cker?= Date: Mon, 27 Sep 2010 21:07:54 +0000 Subject: [PATCH] minor typos Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3645 --- README | 8 ++++---- src/gui/sdlmain.cpp | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README b/README index 99b4c5cc..7302d250 100644 --- a/README +++ b/README @@ -1265,8 +1265,8 @@ CPU Cycles (speed up/slow down) a different setting in the DOSBox's configuration file. You can force the slow or fast behavior by setting a fixed amount of cycles - in the DOSBox's configuration file. If you for example set cycles=10000, then - DOSBox window will display a line "Cpu Speed: fixed 10000 cycles" at the top. + in the DOSBox's configuration file. If you set for example cycles=10000, the + DOSBox window will display a line "CPU speed: fixed 10000 cycles" at the top. In this mode you can reduce the amount of cycles even more by hitting CTRL-F11 (you can go as low as you want) or raise it by hitting CTRL-F12 as much as you want, but you will be limited by the power of one core of your computer's CPU. @@ -1281,8 +1281,8 @@ CPU Cycles (speed up/slow down) You can also force the fast behavior by setting cycles=max in the DOSBox configuration file. The DOSBox window will display a line - "Cpu Speed: max 100% cycles" at the top then. This time you won't have to care - how much free time your real CPU's cores have, because DOSBox will always use + "CPU speed: max 100% cycles" at the top then. This time you won't have to care + how much free time your real CPU cores have, because DOSBox will always use 100% of your real CPU's one core. In this mode you can reduce the amount of your real CPU's core usage by CTRL-F11 or raise it with CTRL-F12. diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index 6bbc24c3..1d004176 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -236,9 +236,9 @@ void GFX_SetTitle(Bit32s cycles,Bits frameskip,bool paused){ if(cycles != -1) internal_cycles = cycles; if(frameskip != -1) internal_frameskip = frameskip; if(CPU_CycleAutoAdjust) { - sprintf(title,"DOSBox %s, Cpu speed: max %3d%% cycles, Frameskip %2d, Program: %8s",VERSION,internal_cycles,internal_frameskip,RunningProgram); + sprintf(title,"DOSBox %s, CPU speed: max %3d%% cycles, Frameskip %2d, Program: %8s",VERSION,internal_cycles,internal_frameskip,RunningProgram); } else { - sprintf(title,"DOSBox %s, Cpu speed: %8d cycles, Frameskip %2d, Program: %8s",VERSION,internal_cycles,internal_frameskip,RunningProgram); + sprintf(title,"DOSBox %s, CPU speed: %8d cycles, Frameskip %2d, Program: %8s",VERSION,internal_cycles,internal_frameskip,RunningProgram); } if(paused) strcat(title," PAUSED");