The debugger "Auto" registry value should be a string.

diff --git a/win32/except.c b/win32/except.c
index 4ed1033..0acd1c0 100644
--- a/win32/except.c
+++ b/win32/except.c
@@ -192,7 +192,7 @@
 		     &hDbgConf)) {
        DWORD 	type;
        DWORD 	count;
-       
+
        count = sizeof(format);
        if (RegQueryValueExA(hDbgConf, "Debugger", 0, &type, format, &count))
 	  format[0] = 0;
@@ -200,7 +200,13 @@
        count = sizeof(bAuto);
        if (RegQueryValueExA(hDbgConf, "Auto", 0, &type, (char*)&bAuto, &count))
 	  bAuto = TRUE;
-       
+       else if (type == REG_SZ)
+       {
+           char autostr[10];
+           count = sizeof(autostr);
+           if (!RegQueryValueExA(hDbgConf, "Auto", 0, &type, autostr, &count))
+               bAuto = atoi(autostr);
+       }
        RegCloseKey(hDbgConf);
     } else {
        /* format[0] = 0; */
diff --git a/winedefault.reg b/winedefault.reg
index 672b5f9..7b455a0 100644
--- a/winedefault.reg
+++ b/winedefault.reg
@@ -87,7 +87,7 @@
 # command line to start a debugger when an exception occurs
 "Debugger"="debugger/winedbg %ld %ld"
 # to 0 if a message box has to be presented before running the debugger
-"Auto"=dword:00000001
+"Auto"="1"
 
 #
 # This identifies the files for available code pages