From 9ca49a8d0f40cb5be9ec7f3efbd2d0c018e5679c Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 15 Nov 2015 18:33:09 +0100 Subject: [PATCH] Fixed: Revert back TrapCrashInDebugger to false else VC++ can't intercept exceptions and we'll be unable to debug :( --- code/nel/src/misc/debug.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/nel/src/misc/debug.cpp b/code/nel/src/misc/debug.cpp index 798161a21..bcd2d25cb 100644 --- a/code/nel/src/misc/debug.cpp +++ b/code/nel/src/misc/debug.cpp @@ -79,8 +79,7 @@ using namespace std; #define LOG_IN_FILE NEL_LOG_IN_FILE // If true, debug system will trap crash even if the application is in debugger -//static const bool TrapCrashInDebugger = false; -static const bool TrapCrashInDebugger = true; +static const bool TrapCrashInDebugger = false; #ifdef DEBUG_NEW #define new DEBUG_NEW