diff --git a/src/cpu/cpu.cpp b/src/cpu/cpu.cpp index f72090f2..9c765aed 100644 --- a/src/cpu/cpu.cpp +++ b/src/cpu/cpu.cpp @@ -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 #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"); - } diff --git a/src/dos/dos.cpp b/src/dos/dos.cpp index 33f99628..e0959e8d 100644 --- a/src/dos/dos.cpp +++ b/src/dos/dos.cpp @@ -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 #include @@ -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)); diff --git a/src/shell/shell.cpp b/src/shell/shell.cpp index 221d46ae..5cf3ddd6 100644 --- a/src/shell/shell.cpp +++ b/src/shell/shell.cpp @@ -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 #include @@ -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(sec);