Make tune run for longer in fast modes

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6734 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2016-06-05 20:34:11 +00:00
parent a6be978915
commit 7501185723
1 changed files with 1 additions and 2 deletions

View File

@ -213,8 +213,7 @@ qint64 Modulator::readData (char * data, qint64 maxSize)
// fade out parameters (no fade out for tuning)
unsigned int i0,i1;
if(m_tuning) {
i0=9999*m_nsps;
i1=9999*m_nsps;
i1 = i0 = (m_bFastMode ? 999999 : 9999) * m_nsps;
} else {
i0=(m_symbolsLength - 0.017) * 4.0 * m_nsps;
i1= m_symbolsLength * 4.0 * m_nsps;