From 56d782b16caf7082c05c2c536b7e35ccb6d96c66 Mon Sep 17 00:00:00 2001 From: Banks T Date: Mon, 7 Oct 2019 01:18:49 -0400 Subject: [PATCH] Add secondary camera name for PS3Eye (#1920) --- cscore/src/main/native/linux/UsbCameraImpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cscore/src/main/native/linux/UsbCameraImpl.cpp b/cscore/src/main/native/linux/UsbCameraImpl.cpp index f508099178..cfaf6531ad 100644 --- a/cscore/src/main/native/linux/UsbCameraImpl.cpp +++ b/cscore/src/main/native/linux/UsbCameraImpl.cpp @@ -1154,7 +1154,8 @@ void UsbCameraImpl::SetQuirks() { wpi::StringRef desc = GetDescription(descbuf); m_lifecam_exposure = desc.endswith("LifeCam HD-3000") || desc.endswith("LifeCam Cinema (TM)"); - m_ps3eyecam_exposure = desc.endswith("Camera-B4.04.27.1"); + m_ps3eyecam_exposure = + desc.endswith("Camera-B4.04.27.1") || desc.endswith("Camera-B4.09.24.1"); } void UsbCameraImpl::SetProperty(int property, int value, CS_Status* status) {