Restore try/catch from previous pull request.

This commit is contained in:
RadWolfie 2018-07-19 13:12:22 -05:00
parent 866f986136
commit 9f6be941f4
1 changed files with 0 additions and 4 deletions

View File

@ -97,18 +97,14 @@ public:
m_Pending = false;
}
#ifdef USE_SEH
__try {
#endif // USE_SEH
BOOLEAN(__stdcall *ServiceRoutine)(xboxkrnl::PKINTERRUPT, void*) = (BOOLEAN(__stdcall *)(xboxkrnl::PKINTERRUPT, void*))Interrupt->ServiceRoutine;
BOOLEAN result = ServiceRoutine(Interrupt, Interrupt->ServiceContext);
#ifdef USE_SEH
}
__except (EmuException(GetExceptionInformation()))
{
EmuWarning("Problem with ExceptionFilter!");
}
#endif // USE_SEH
}
private:
bool m_Asserted = false;