GCAdapter: Only start the thread on startup if direct connect is enabled

This commit is contained in:
mathieui 2015-07-14 17:15:26 +02:00
parent ac8621ccab
commit cae00254a5

View file

@ -151,7 +151,8 @@ void Init()
}
else
{
StartScanThread();
if (SConfig::GetInstance().m_GameCubeAdapter)
StartScanThread();
}
}