The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

d/wmr: Fix Reverb G2 detection

196bf24276d7965636b845813b3caff42177f027 broke Reverb G2
detection. Use the right PID to match the Reverb G2 headset
again.

+1 -1
+1 -1
src/xrt/drivers/wmr/wmr_prober.c
··· 64 64 65 65 if (device->product_id == REVERB_G1_PID) 66 66 *out_hmd_type = WMR_HEADSET_REVERB_G1; 67 - else if (device->product_id == REVERB_G2_CONTROLLER_PID) 67 + else if (device->product_id == REVERB_G2_PID) 68 68 *out_hmd_type = WMR_HEADSET_REVERB_G2; 69 69 else if (device->product_id == VR1000_PID) 70 70 *out_hmd_type = WMR_HEADSET_HP_VR1000;