mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-11 02:09:03 -04:00
Separate variables for the decoding parameters that had been packed into ndepth.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6170 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+7
-3
@@ -1660,9 +1660,13 @@ void MainWindow::decode() //decode()
|
||||
}
|
||||
|
||||
jt9com_.nfqso=m_wideGraph->rxFreq();
|
||||
jt9com_.ndepth=100000 + 1000*m_config.ntrials() + 10*m_config.aggressive() + m_ndepth;
|
||||
if(m_config.twoPass()) jt9com_.ndepth += 100000;
|
||||
if(m_config.sync1Bit()) jt9com_.ndepth += 10000;
|
||||
jt9com_.ndepth=m_ndepth;
|
||||
jt9com_.n2pass=1;
|
||||
if(m_config.twoPass()) jt9com_.n2pass=2;
|
||||
jt9com_.nranera=m_config.ntrials();
|
||||
jt9com_.naggressive=m_config.aggressive();
|
||||
jt9com_.nrobust=0;
|
||||
if(m_config.sync1Bit()) jt9com_.nrobust=1;
|
||||
jt9com_.ndiskdat=0;
|
||||
if(m_diskData) jt9com_.ndiskdat=1;
|
||||
jt9com_.nfa=m_wideGraph->nStartFreq();
|
||||
|
||||
Reference in New Issue
Block a user