diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-03-28 11:42:17 +0300 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-03-28 11:42:17 +0300 | 
| commit | f1e00870dfef809b2c2842051140cc720650649a (patch) | |
| tree | 78fa7aa89ac26ab6aeb56b7e13485df6cb928e09 | |
| parent | 5a73e8fc102fbf94ec6660e3be1220d68855ebd3 (diff) | |
MAINT-6980 FIXED Ctrl + Alt + Shift + B does not force a crash on mac
| -rw-r--r-- | indra/newview/llappviewer.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 62e32c0bdc..f53ba01d37 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5592,6 +5592,8 @@ void LLAppViewer::forceErrorBreakpoint()     	LL_WARNS() << "Forcing a deliberate breakpoint" << LL_ENDL;  #ifdef LL_WINDOWS      DebugBreak(); +#else +    asm ("int $3");  #endif      return;  } | 
