Ticket #2502: legacy.diff
File legacy.diff, 723 bytes (added by , 19 years ago) |
---|
-
libs/libmythtv/diseqc.cpp
1374 1374 horizontal != m_last_horizontal) 1375 1375 return true; 1376 1376 } 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 } 1377 1387 1388 if(horizontal != m_last_horizontal) 1389 return true; 1390 } 1391 1378 1392 return m_last_pos != (uint)pos; 1379 1393 } 1380 1394