Windows crash handler. (#1383)

* Windows crash handler.

* Fix naming convention.
This commit is contained in:
louist103 2022-09-03 01:15:43 -04:00 committed by GitHub
parent 0ce0ab1260
commit 8118947ab0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 333 additions and 129 deletions

View file

@ -42,6 +42,8 @@ int main(int argc, char** argv)
{
#ifdef __linux__
SetupHandlerLinux();
#elif _WIN32
SetUnhandledExceptionFilter(seh_filter);
#endif
GameConsole_Init();