mirror of https://github.com/PCSX2/pcsx2.git
Revert WinSysExec.cpp change from prev commit; errant unwanted patch part slipped in. (would have broken optional enabling of setjmp under windows).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3142 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
2a0d360125
commit
2f69597052
|
@ -20,8 +20,6 @@
|
|||
#include "Common.h"
|
||||
#include "System/PageFaultSource.h"
|
||||
|
||||
#if PCSX2_SEH
|
||||
|
||||
int SysPageFaultExceptionFilter( EXCEPTION_POINTERS* eps )
|
||||
{
|
||||
if( eps->ExceptionRecord->ExceptionCode != EXCEPTION_ACCESS_VIOLATION )
|
||||
|
@ -31,8 +29,6 @@ int SysPageFaultExceptionFilter( EXCEPTION_POINTERS* eps )
|
|||
return Source_PageFault.WasHandled() ? EXCEPTION_CONTINUE_EXECUTION : EXCEPTION_CONTINUE_SEARCH;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void InstallSignalHandler()
|
||||
{
|
||||
// NOP on Win32 systems -- we use __try{} __except{} instead.
|
||||
|
|
Loading…
Reference in New Issue