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:
Jake.Stine 2010-06-01 14:30:25 +00:00
parent 2a0d360125
commit 2f69597052
1 changed files with 0 additions and 4 deletions

View File

@ -20,8 +20,6 @@
#include "Common.h" #include "Common.h"
#include "System/PageFaultSource.h" #include "System/PageFaultSource.h"
#if PCSX2_SEH
int SysPageFaultExceptionFilter( EXCEPTION_POINTERS* eps ) int SysPageFaultExceptionFilter( EXCEPTION_POINTERS* eps )
{ {
if( eps->ExceptionRecord->ExceptionCode != EXCEPTION_ACCESS_VIOLATION ) 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; return Source_PageFault.WasHandled() ? EXCEPTION_CONTINUE_EXECUTION : EXCEPTION_CONTINUE_SEARCH;
} }
#endif
void InstallSignalHandler() void InstallSignalHandler()
{ {
// NOP on Win32 systems -- we use __try{} __except{} instead. // NOP on Win32 systems -- we use __try{} __except{} instead.