Changed debugger launching to auto per default.
This commit is contained in:
parent
ef3e8f286a
commit
3c5f89522b
|
@ -124,7 +124,7 @@ DWORD WINAPI UnhandledExceptionFilter(PEXCEPTION_POINTERS epointers)
|
||||||
|
|
||||||
count = sizeof(bAuto);
|
count = sizeof(bAuto);
|
||||||
if (RegQueryValueExA(hDbgConf, "Auto", 0, &type, (char*)&bAuto, &count))
|
if (RegQueryValueExA(hDbgConf, "Auto", 0, &type, (char*)&bAuto, &count))
|
||||||
bAuto = FALSE;
|
bAuto = TRUE;
|
||||||
|
|
||||||
RegCloseKey(hDbgConf);
|
RegCloseKey(hDbgConf);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -81,8 +81,8 @@
|
||||||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug]
|
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug]
|
||||||
# command line to start a debugger when an exception occurs
|
# command line to start a debugger when an exception occurs
|
||||||
"Debugger"="debugger/winedbg %ld %ld"
|
"Debugger"="debugger/winedbg %ld %ld"
|
||||||
# to 1 if no message box has to be presented before running the debugger
|
# to 0 if a message box has to be presented before running the debugger
|
||||||
"Auto"=dword:00000000
|
"Auto"=dword:00000001
|
||||||
|
|
||||||
#
|
#
|
||||||
# This identifies the files for available code pages
|
# This identifies the files for available code pages
|
||||||
|
|
Loading…
Reference in New Issue