From 8b0d5c092d6224fe48798d03daa21c22d858a555 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Sat, 3 Feb 2018 22:35:34 +0000 Subject: [PATCH] Remove -d option from call to wsprd when Deep decoding is selected. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8453 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 68a44316b..f2182b3af 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1361,8 +1361,8 @@ void MainWindow::dataSink(qint64 frames) double f0m1500=m_dialFreqRxWSPR/1000000.0; // + 0.000001*(m_BFO - 1500); t2.sprintf(" -f %.6f ",f0m1500); if((m_ndepth&7)==1) depth_string=" -qB "; //2 pass w subtract, no Block detection, no shift jittering - if((m_ndepth&7)==2) depth_string=" -B "; //2 pass w subtract - if((m_ndepth&7)==3) depth_string=" -d "; //2 pass w subtract, Block detection, more candidates + if((m_ndepth&7)==2) depth_string=" -B "; //2 pass w subtract, no Block detection + if((m_ndepth&7)==3) depth_string=" "; //2 pass w subtract, Block detection QString degrade; degrade.sprintf("-d %4.1f ",m_config.degrade());