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
parent 5cc87f9cd8
commit cb25e91c54

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;