Skip to content

Commit

Permalink
fix #6364:
Browse files Browse the repository at this point in the history
try to add a more generic windows driver crash detection
  • Loading branch information
abma committed Jan 30, 2020
1 parent 56aa8d6 commit d1cdf17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rts/System/Platform/Win/CrashHandler.cpp
Expand Up @@ -345,6 +345,8 @@ inline static void StacktraceInline(const char* threadName, LPEXCEPTION_POINTERS
glLibFound |= (strstr(modName, "ig4") != nullptr);
// OpenGL lib names (Intel)
glLibFound |= (strstr(modName, "ig75icd32.dll") != nullptr);
// Windows driver store, i.e. "..\DriverStore\FileRepository\...\ig9.dll"
glLibFound |= (strstr(modName, "DriverStore") != nullptr);
}
}

Expand Down

0 comments on commit d1cdf17

Please sign in to comment.