Misc update

* Fixed old comment
* Added comment for reason override later exception
This commit is contained in:
RadWolfie 2018-07-12 11:19:35 -05:00
parent 41119ad6a2
commit 1fc6b87aa3
1 changed files with 6 additions and 4 deletions

View File

@ -292,10 +292,12 @@ bool lleTryHandleException(EXCEPTION_POINTERS *e)
return true;
}
genericException(e);
// Unhandled exception :
genericException(e);
// We do not need EmuException to handle it again.
bOverrideException = true;
// Unhandled exception :
return false;
}
@ -312,7 +314,7 @@ LONG NTAPI lleException(EXCEPTION_POINTERS *e)
bool EmuTryHandleException(EXCEPTION_POINTERS *e)
{
// Check if lle exception is already called here first before emu exception.
// Check if lle exception is already called first before emu exception.
if (bOverrideException) {
return false;
}