aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad Davis <[email protected]>2014-08-06 20:38:28 -0700
committerSven Gothel <[email protected]>2015-03-17 12:11:46 +0100
commite2c8888763eb304f92dcea89047655f402f3a9c5 (patch)
tree06e48e6c5c85e4055336da69c87e9c2d7c9fa208
parent68f0e6a22767ee9342c91025b179551c9196b871 (diff)
Product 3 (DK2) not properly detected
-rw-r--r--LibOVR/Src/OVR_OSX_HMDDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibOVR/Src/OVR_OSX_HMDDevice.cpp b/LibOVR/Src/OVR_OSX_HMDDevice.cpp
index e16de81..edf940d 100644
--- a/LibOVR/Src/OVR_OSX_HMDDevice.cpp
+++ b/LibOVR/Src/OVR_OSX_HMDDevice.cpp
@@ -215,7 +215,7 @@ void HMDDeviceFactory::EnumerateDevices(EnumerateVisitor& visitor)
CGRect desktop = CGDisplayBounds(Displays[i]);
- if (vendor == 16082 && ( (product == 1)||(product == 2) ) ) // 7" or HD
+ if (vendor == 16082 && ( (product == 1)||(product == 2)||(product == 3) ) ) // 7" or HD
{
char idstring[9];
idstring[0] = 'A'-1+((vendor>>10) & 31);