We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3cb09e + dcde30d commit 5e4a531Copy full SHA for 5e4a531
1 file changed
GeneralsMD/Code/GameEngine/Source/GameNetwork/GeneralsOnline/OnlineServices_Init.cpp
@@ -1047,6 +1047,11 @@ void NGMP_OnlineServicesManager::InitSentry()
1047
}, nullptr);
1048
#endif
1049
1050
+ // Disable the crash handler backend to prevent it from attempting to
1051
+ // initialize Windows UI components (SystemNavigationManagerStatics::GetForCurrentView)
1052
+ // on a non-UI thread during sentry_init(), which causes an access violation.
1053
+ sentry_options_set_backend(options, nullptr);
1054
+
1055
sentry_init(options);
1056
1057
}
0 commit comments