1
0
Fork 0

Tag XLX reflectors as Wires-X capable, allowing passthrough

ycs232-kbc
narspt 5 years ago committed by GitHub
parent 0e018f1676
commit c3eaac41ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -139,7 +139,11 @@ bool CYSFReflectors::load()
refl->m_port = (unsigned int)::atoi(p5); refl->m_port = (unsigned int)::atoi(p5);
refl->m_count = std::string(p6); refl->m_count = std::string(p6);
refl->m_type = YT_YSF; refl->m_type = YT_YSF;
refl->m_wiresX = false;
if (refl->m_name.compare(0, 3, "XLX") == 0)
refl->m_wiresX = true;
else
refl->m_wiresX = false;
refl->m_name.resize(16U, ' '); refl->m_name.resize(16U, ' ');
refl->m_desc.resize(14U, ' '); refl->m_desc.resize(14U, ' ');

Loading…
Cancel
Save