From f08563efd9ce016363cbe2e5e0b1e0cf8e38ea94 Mon Sep 17 00:00:00 2001 From: Soren Jorvang Date: Fri, 21 Jan 2011 16:54:37 +0000 Subject: [PATCH] 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 --- Source/Core/DolphinWX/Src/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/Main.cpp b/Source/Core/DolphinWX/Src/Main.cpp index 4c074abcc4..19eab1b3b4 100644 --- a/Source/Core/DolphinWX/Src/Main.cpp +++ b/Source/Core/DolphinWX/Src/Main.cpp @@ -174,7 +174,7 @@ bool DolphinApp::OnInit() #ifdef _WIN32 EXTENDEDTRACEINITIALIZE("."); SetUnhandledExceptionFilter(&MyUnhandledExceptionFilter); -#else +#elif wxUSE_ON_FATAL_EXCEPTION wxHandleFatalExceptions(true); #endif