1
0
Fork 0

Remove help line

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1336
This commit is contained in:
Sjoerd van der Berg 2003-10-14 23:34:28 +00:00
parent 157e84e2a5
commit f901c5e096
3 changed files with 3 additions and 7 deletions

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: cpu.cpp,v 1.34 2003-09-30 13:48:20 finsterr Exp $ */
/* $Id: cpu.cpp,v 1.35 2003-10-14 23:31:51 harekiet Exp $ */
#include <assert.h>
#include "dosbox.h"
@ -962,7 +962,5 @@ void CPU_Init(Section* sec) {
if (!CPU_CycleMax) CPU_CycleMax=1500;
CPU_CycleLeft=0;
GFX_SetTitle(CPU_CycleMax,-1);
MSG_Add("CPU_CONFIGFILE_HELP","The amount of cycles to execute each loop. Lowering this setting will slowdown dosbox\n");
}

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: dos.cpp,v 1.56 2003-10-14 08:38:35 qbix79 Exp $ */
/* $Id: dos.cpp,v 1.57 2003-10-14 23:33:33 harekiet Exp $ */
#include <stdio.h>
#include <stdlib.h>
@ -936,7 +936,6 @@ void DOS_ShutDown(Section* sec)
void DOS_Init(Section* sec) {
MSG_Add("DOS_CONFIGFILE_HELP","Disabling or enabling DPMI makes a huge difference for protected mode games. Try both!\n");
call_20=CALLBACK_Allocate();
CALLBACK_Setup(call_20,DOS_20Handler,CB_IRET);
RealSetVec(0x20,CALLBACK_RealPointer(call_20));

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: shell.cpp,v 1.35 2003-09-30 19:12:44 qbix79 Exp $ */
/* $Id: shell.cpp,v 1.36 2003-10-14 23:34:28 harekiet Exp $ */
#include <stdlib.h>
#include <stdarg.h>
@ -212,7 +212,6 @@ void DOS_Shell::SyntaxError(void) {
void AUTOEXEC_Init(Section * sec) {
MSG_Add("AUTOEXEC_CONFIGFILE_HELP","Add here the lines you want to execute on startup.\n");
/* Register a virtual AUOEXEC.BAT file */
std::string line;
Section_line * section=static_cast<Section_line *>(sec);