summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-06-26 16:51:19 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-06-26 16:51:19 +0000
commit1e7bfa9b948e39edced489342b2f15508f4fbf69 (patch)
treeba3d918f6814e7ad8b61af9f15ac5f09881d2c40
parent077cd49d2e09b32de9d2ef178c7ab478654b1bc6 (diff)
Update docs a bit. Turn off debugger by default.
-rw-r--r--docs/config.txt9
-rw-r--r--src/emu/emuopts.c2
2 files changed, 5 insertions, 6 deletions
diff --git a/docs/config.txt b/docs/config.txt
index ab0fc4f2da7..2d75fdd361d 100644
--- a/docs/config.txt
+++ b/docs/config.txt
@@ -274,7 +274,7 @@ Configuration options
- mame.ini
- <mymame>.ini (i.e. if MAME was renamed mame060.exe, MAME
parses mame060.ini here)
- - mamed.ini (if this is a debug build, i.e. mamed.exe)
+ - debug.ini (if the debugger is enabled)
- vector.ini (for vector games only)
- <driver>.ini (based on the source filename of the driver)
- <parent>.ini (for clones only, may be called recursively)
@@ -940,10 +940,9 @@ Debugging options
-[no]debug
- Activates the integrated debugger. This is available only if the
- program is compiled with MAME_DEBUG defined. By default, the debugger
- is entered by pressing the tilde (~) key during emulation. It is also
- entered immediately at startup. The default is ON (-debug).
+ Activates the integrated debugger. By default, the debugger is entered
+ by pressing the tilde (~) key during emulation. It is also entered
+ immediately at startup. The default is OFF (-nodebug).
-debugscript <filename>
diff --git a/src/emu/emuopts.c b/src/emu/emuopts.c
index 342ef2f7b74..af5590a0d25 100644
--- a/src/emu/emuopts.c
+++ b/src/emu/emuopts.c
@@ -149,7 +149,7 @@ const options_entry mame_core_options[] =
{ "log", "0", OPTION_BOOLEAN, "generate an error.log file" },
{ "verbose;v", "0", OPTION_BOOLEAN, "display additional diagnostic information" },
{ "update_in_pause", "0", OPTION_BOOLEAN, "keep calling video updates while in pause" },
- { "debug;d", "1", OPTION_BOOLEAN, "enable/disable debugger" },
+ { "debug;d", "0", OPTION_BOOLEAN, "enable/disable debugger" },
{ "debugscript", NULL, 0, "script for debugger" },
/* misc options */