Skip to content

Commit 9d5d431

Browse files
committed
Fix VID in HDK enumeration.
Had it right in VRPN, but wrong in the autodetection.
1 parent c00a976 commit 9d5d431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/multiserver/com_osvr_Multiserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class VRPNHardwareDetect : boost::noncopyable {
166166
}
167167

168168
// OSVR Hacker Dev Kit
169-
if ((dev->vendor_id == 0x1532 && dev->product_id == 0x0300) ||
169+
if ((dev->vendor_id == 0x1532 && dev->product_id == 0x0b00) ||
170170
(dev->vendor_id == 0x03EB && dev->product_id == 0x2421)) {
171171
gotDevice = true;
172172
m_handlePath(dev->path);

0 commit comments

Comments
 (0)