Misc update
* Fixed old comment * Added comment for reason override later exception
This commit is contained in:
parent
41119ad6a2
commit
1fc6b87aa3
|
@ -294,8 +294,10 @@ bool lleTryHandleException(EXCEPTION_POINTERS *e)
|
||||||
|
|
||||||
genericException(e);
|
genericException(e);
|
||||||
|
|
||||||
// Unhandled exception :
|
// We do not need EmuException to handle it again.
|
||||||
bOverrideException = true;
|
bOverrideException = true;
|
||||||
|
|
||||||
|
// Unhandled exception :
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -312,7 +314,7 @@ LONG NTAPI lleException(EXCEPTION_POINTERS *e)
|
||||||
bool EmuTryHandleException(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) {
|
if (bOverrideException) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue