summaryrefslogtreecommitdiff
path: root/src/utilcode
diff options
context:
space:
mode:
Diffstat (limited to 'src/utilcode')
-rw-r--r--src/utilcode/debug.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/utilcode/debug.cpp b/src/utilcode/debug.cpp
index 6b9de4f82e..43de454d70 100644
--- a/src/utilcode/debug.cpp
+++ b/src/utilcode/debug.cpp
@@ -490,6 +490,11 @@ bool _DbgBreakCheck(
switch(ret)
{
+ case 0:
+#if 0
+ // The message box was not displayed. Tell caller to break.
+ return true;
+#endif
// For abort, just quit the app.
case IDABORT:
TerminateProcess(GetCurrentProcess(), 1);
@@ -538,10 +543,6 @@ bool _DbgBreakCheck(
psData->iLine = iLine;
strcpy(psData->rcFile, szFile);
break;
-
- case 0:
- // The message box was not displayed. Tell caller to break.
- return true;
}
return false;