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);
|
||||
if (RegQueryValueExA(hDbgConf, "Auto", 0, &type, (char*)&bAuto, &count))
|
||||
bAuto = FALSE;
|
||||
bAuto = TRUE;
|
||||
|
||||
RegCloseKey(hDbgConf);
|
||||
} else {
|
||||
|
|
|
@ -81,8 +81,8 @@
|
|||
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug]
|
||||
# command line to start a debugger when an exception occurs
|
||||
"Debugger"="debugger/winedbg %ld %ld"
|
||||
# to 1 if no message box has to be presented before running the debugger
|
||||
"Auto"=dword:00000000
|
||||
# to 0 if a message box has to be presented before running the debugger
|
||||
"Auto"=dword:00000001
|
||||
|
||||
#
|
||||
# This identifies the files for available code pages
|
||||
|
|
Loading…
Reference in New Issue