Skip to content

Commit

Permalink
Due to change in upstream SDK, we must explicitly add the DNAME other…
Browse files Browse the repository at this point in the history
…wise it cannot be detected by clients properly.
  • Loading branch information
knro committed Oct 2, 2024
1 parent d2e56a4 commit af4a69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indi-toupbase/indi_toupbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ToupBase::ToupBase(const XP(DeviceV2) *instance, const std::string &name) : m_In

setVersion(TOUPBASE_VERSION_MAJOR, TOUPBASE_VERSION_MINOR);

setDeviceName(name.c_str());
setDeviceName((std::string(DNAME) + " " + name).c_str());

if (m_Instance->model->flag & CP(FLAG_MONO))
m_MonoCamera = true;
Expand Down

0 comments on commit af4a69f

Please sign in to comment.