Fixed a typo that could have caused a bug

This commit is contained in:
ksuprynowicz 2023-06-27 19:14:30 +02:00
parent 7cf9fd83a6
commit dfef9680f9

View file

@ -2070,7 +2070,7 @@ controller::Input::NamedVector ViveControllerManager::InputDevice::getAvailableI
QString ViveControllerManager::InputDevice::getDefaultMappingConfig() const {
QString name(getOpenVrDeviceName().c_str());
QString MAPPING_JSON;
if (name.contains(QString("Vive")) || name.contains(QString("Vive"))) {
if (name.contains(QString("HTC")) || name.contains(QString("Vive"))) {
MAPPING_JSON = PathUtils::resourcesPath() + "/controllers/vive.json";
} else {
MAPPING_JSON = PathUtils::resourcesPath() + "/controllers/index.json";