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

@ -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;
} }