mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
dont crash on mods failling to load (again)
This commit is contained in:
parent
e37615b459
commit
e141d097ab
1 changed files with 4 additions and 1 deletions
|
@ -409,7 +409,10 @@ static LONG WINAPI exceptionHandler(LPEXCEPTION_POINTERS info) {
|
|||
// c++ exceptions, handled separately
|
||||
EXCEPTION_NUMBER,
|
||||
// mods failing to load
|
||||
ERROR_DLL_INIT_FAILED
|
||||
STATUS_DLL_NOT_FOUND,
|
||||
STATUS_DLL_INIT_FAILED,
|
||||
STATUS_ORDINAL_NOT_FOUND,
|
||||
STATUS_ENTRYPOINT_NOT_FOUND,
|
||||
});
|
||||
|
||||
if (std::find(ignored.begin(), ignored.end(), info->ExceptionRecord->ExceptionCode) != ignored.end()) {
|
||||
|
|
Loading…
Reference in a new issue