From: Andreas Monzner Date: Wed, 7 Dec 2005 12:16:21 +0000 (+0000) Subject: dont let turn rotor wild from east to west X-Git-Tag: 2.6.0~4797 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1d07d67fdfcc5e3cedb9f5ce48998770264ab5c5 dont let turn rotor wild from east to west --- diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index e1bd0012..ba63ed9f 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -231,7 +231,7 @@ void eDVBScan::addChannelToScan(const eDVBChannelID &chid, iDVBFrontendParameter return; /* otherwise, add it to the todo list. */ - m_ch_toScan.push_back(feparm); + m_ch_toScan.push_front(feparm); // better.. then the rotor not turning wild from east to west :) } int eDVBScan::sameChannel(iDVBFrontendParameters *ch1, iDVBFrontendParameters *ch2) const