Ticket #2502: legacy.diff

File legacy.diff, 723 bytes (added by nooneimprt4nt@…, 19 years ago)
  • libs/libmythtv/diseqc.cpp

     
    13741374           horizontal != m_last_horizontal)
    13751375            return true;
    13761376    }
     1377    else if (kTypeLegacySW42 == m_type ||
     1378             kTypeLegacySW64 == m_type)
     1379    {
     1380        // retrieve LNB info
     1381        bool horizontal = false;
     1382        DiSEqCDevLNB *lnb  = m_tree.FindLNB(settings);
     1383        if (lnb)
     1384        {
     1385            horizontal  = lnb->IsHorizontal(tuning);
     1386        }
    13771387
     1388        if(horizontal != m_last_horizontal)
     1389            return true;
     1390    }
     1391
    13781392    return m_last_pos != (uint)pos;
    13791393}
    13801394