Merge pull request #2747 from endrift/fix-non-libusb

DolphinWX: Fix build if libusb is disabled
This commit is contained in:
Markus Wick 2015-07-18 10:10:23 +02:00
commit 8beb67fd3e
1 changed files with 2 additions and 0 deletions

View File

@ -73,10 +73,12 @@ private:
void OnGameCubeAdapter(wxCommandEvent& event)
{
SConfig::GetInstance().m_GameCubeAdapter = event.IsChecked();
#ifdef __LIBUSB__
if (event.IsChecked())
SI_GCAdapter::StartScanThread();
else
SI_GCAdapter::StopScanThread();
#endif
event.Skip();
}
void OnAdapterRumble(wxCommandEvent& event)