Fortius 0x1932 added to find logic

Forgot to add update to the find method when
adding experimental support for the 0x1932
revision of the Tacx Fortius.
This commit is contained in:
Mark Liversedge
2012-11-16 17:58:32 +00:00
committed by Mark Liversedge
parent 4420c5b185
commit 1f8b49f5cd

View File

@@ -209,6 +209,9 @@ bool LibUsb::findFortius()
if (dev->descriptor.idVendor == FORTIUS_VID && dev->descriptor.idProduct == FORTIUS_PID) {
found = true;
}
if (dev->descriptor.idVendor == FORTIUS_VID && dev->descriptor.idProduct == FORTIUSVR_PID) {
found = true;
}
}
}
return found;