Don't make "Tune" stop early in fast modes.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6147 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2015-11-21 20:24:46 +00:00
parent 18cf246785
commit 822a281bd9
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ qint64 Modulator::readData (char * data, qint64 maxSize)
i0=(m_symbolsLength - 0.017) * 4.0 * m_nsps;
i1= m_symbolsLength * 4.0 * m_nsps;
}
if(m_bFastMode) {
if(m_bFastMode and !m_tuning) {
i1=m_TRperiod*48000 - 24000;
i0=i1-816;
}