From 850bfb4acdb2e7a7cff5d121e837f128892645a5 Mon Sep 17 00:00:00 2001 From: Adam Jorgensen Date: Thu, 31 Oct 2019 21:46:15 +0200 Subject: [PATCH] #2: Fixed function used to detect VigEm and WinUSB drivers --- XBOFS.win/src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XBOFS.win/src/utils.cpp b/XBOFS.win/src/utils.cpp index dde0dbe..e4c76c1 100644 --- a/XBOFS.win/src/utils.cpp +++ b/XBOFS.win/src/utils.cpp @@ -55,7 +55,7 @@ bool XBOFSWin::deviceInterfaceAvailable(LPGUID deviceInterfaceGUID, bool present ); if (configurationManagerResult != CR_SUCCESS) return false; - return deviceInterfaceListSize > 0; + return deviceInterfaceListSize > 1; } bool XBOFSWin::vigEmBusAvailable()