Misc update
* Fixed old comment * Added comment for reason override later exception
This commit is contained in:
parent
41119ad6a2
commit
1fc6b87aa3
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue