From cae00254a5c6c1d177b13552243613a92bf37738 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 14 Jul 2015 17:15:26 +0200 Subject: [PATCH] GCAdapter: Only start the thread on startup if direct connect is enabled --- Source/Core/Core/HW/SI_GCAdapter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/SI_GCAdapter.cpp b/Source/Core/Core/HW/SI_GCAdapter.cpp index 9b4482c452..8660f44d65 100644 --- a/Source/Core/Core/HW/SI_GCAdapter.cpp +++ b/Source/Core/Core/HW/SI_GCAdapter.cpp @@ -151,7 +151,8 @@ void Init() } else { - StartScanThread(); + if (SConfig::GetInstance().m_GameCubeAdapter) + StartScanThread(); } }