]> granicus.if.org Git - nethack/commitdiff
Revert "Add stopping in the debugger when nhassert() is hit in the windows port."
authorBart House <bart@barthouse.com>
Mon, 15 Jul 2019 04:11:41 +0000 (21:11 -0700)
committerBart House <bart@barthouse.com>
Mon, 15 Jul 2019 04:11:41 +0000 (21:11 -0700)
This reverts commit 5d2872dd4f24fb76f29bf34f6f950394910d6d33.

sys/winnt/winnt.c

index 39978cab478c49f010a04860964696118d3d1850..8d513c59e8e361ea2128803dd3df289a45f019ee 100644 (file)
@@ -718,19 +718,9 @@ nt_assert_failed(expression, filepath, line)
 {
     const char * filename;
 
+    /* get file name from path */
     filename = strrchr(filepath, '\\');
     filename = (filename == NULL ? filepath : filename + 1);
-
-    if (IsDebuggerPresent()) {
-        char message[BUFSIZ];
-        snprintf(message, sizeof(message), 
-            "nhassert(%s) failed in file '%s' at line %d",
-            expression, filename, line);
-        OutputDebugStringA(message);
-        DebugBreak();
-    }
-
-    /* get file name from path */
     impossible("nhassert(%s) failed in file '%s' at line %d",
                 expression, filename, line);
 }