wxHandleFatalExceptions is an optional wx feature.

Fixes issue 3962.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6891 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2011-01-21 16:54:37 +00:00
parent 7834880925
commit f08563efd9

View File

@ -174,7 +174,7 @@ bool DolphinApp::OnInit()
#ifdef _WIN32 #ifdef _WIN32
EXTENDEDTRACEINITIALIZE("."); EXTENDEDTRACEINITIALIZE(".");
SetUnhandledExceptionFilter(&MyUnhandledExceptionFilter); SetUnhandledExceptionFilter(&MyUnhandledExceptionFilter);
#else #elif wxUSE_ON_FATAL_EXCEPTION
wxHandleFatalExceptions(true); wxHandleFatalExceptions(true);
#endif #endif