Skip to content
Permalink
Browse files
Merge pull request #9642 from CrunchBite/xlink-bba-fix
Fix crash when stopping a game that does not use the BBA when XLink Kai BBA is selected in configuration
  • Loading branch information
JosJuice committed Apr 18, 2021
2 parents 92308f5 + d6b2fe2 commit dbd39ab
Showing 1 changed file with 4 additions and 0 deletions.
@@ -58,6 +58,10 @@ bool CEXIETHERNET::XLinkNetworkInterface::Activate()

void CEXIETHERNET::XLinkNetworkInterface::Deactivate()
{
// Is the BBA Active? If not skip shutdown
if (!IsActivated())
return;

// Send d; to tell XLink we want to disconnect cleanly
// disconnect;optional_locally_unique_name;optional_padding
std::string cmd =

0 comments on commit dbd39ab

Please sign in to comment.