diff --git a/src/gui/midi.cpp b/src/gui/midi.cpp index 5530ce17..8145d7bc 100644 --- a/src/gui/midi.cpp +++ b/src/gui/midi.cpp @@ -148,7 +148,6 @@ bool MIDI_Available(void) { void MIDI_Init(Section * sec) { Section_prop * section=static_cast(sec); - MSG_Add("MIDI_CONFIGFILE_HELP","Set midi output device,alsa,oss,win32,coreaudio,none\n"); const char * dev=section->Get_string("device"); const char * conf=section->Get_string("config"); /* If device = "default" go for first handler that works */ diff --git a/src/gui/render.cpp b/src/gui/render.cpp index 5cd0404c..4db420f5 100644 --- a/src/gui/render.cpp +++ b/src/gui/render.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: render.cpp,v 1.17 2003-10-14 15:27:39 harekiet Exp $ */ +/* $Id: render.cpp,v 1.18 2003-10-14 23:32:32 harekiet Exp $ */ #include #include @@ -392,7 +392,6 @@ static void DecreaseFrameSkip(void) { } void RENDER_Init(Section * sec) { - MSG_Add("RENDER_CONFIGFILE_HELP","Available scalers: none, normal2x, advmame2x\n"); Section_prop * section=static_cast(sec); render.pal.first=256; @@ -400,7 +399,7 @@ void RENDER_Init(Section * sec) { render.frameskip.max=section->Get_int("frameskip"); render.frameskip.count=0; #if (C_SSHOT) - render.shot.dir=section->Get_string("snapshots"); + render.shot.dir=section->Get_string("snapdir"); KEYBOARD_AddEvent(KBD_f5,KBD_MOD_CTRL,EnableScreenShot); #endif const char * scaler;std::string cline; diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index 0e40d5f8..22b5a696 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: sdlmain.cpp,v 1.50 2003-10-14 20:44:15 harekiet Exp $ */ +/* $Id: sdlmain.cpp,v 1.51 2003-10-14 23:32:32 harekiet Exp $ */ #ifndef _GNU_SOURCE #define _GNU_SOURCE @@ -299,7 +299,6 @@ static void KillSwitch(void){ } static void GUI_StartUp(Section * sec) { - MSG_Add("SDL_CONFIGFILE_HELP","SDL related options.\n"); sec->AddDestroyFunction(&GUI_ShutDown); Section_prop * section=static_cast(sec); sdl.active=false; @@ -645,6 +644,14 @@ int main(int argc, char* argv[]) { sdl_sec->Add_int("sensitivity",100); sdl_sec->Add_bool("waitonerror",true); /* Init all the dosbox subsystems */ + + MSG_Add("SDL_CONFIGFILE_HELP", + "fullscreen -- Start dosbox directly in fullscreen.\n" + "autolock -- Mouse will automatically lock, if you click on the screen.\n" + "sensitiviy -- Mouse sensitivity.\n" + "waitonerror -- Wait before closing the console if dosbox has an error.\n" + ); + DOSBOX_Init(); std::string config_file;