From 8b2e257e2c2a4b8bb703dca13eb38f724918bd51 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 6 May 2021 14:50:05 -0400 Subject: [PATCH] Sent ntone_spacing to wb_sync. Change "debug print flag" from # to =. --- map65/libm65/decode0.f90 | 3 ++- map65/mainwindow.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/map65/libm65/decode0.f90 b/map65/libm65/decode0.f90 index 58bf4ef44..56057fb86 100644 --- a/map65/libm65/decode0.f90 +++ b/map65/libm65/decode0.f90 @@ -20,8 +20,9 @@ subroutine decode0(dd,ss,savg,nstandalone) call timer('decode0 ',0) nkhz_center=nint(1000.0*(fcenter-int(fcenter))) + ntone_spacing=2**(nmode/10) call timer('wb_sync ',0) - call wb_sync(ss,savg) + call wb_sync(ss,savg,ntone_spacing) call timer('wb_sync ',1) if(newdat.ne.0) then diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index 99cf40e8b..1ea278965 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -1420,7 +1420,7 @@ void MainWindow::readFromStdout() //readFromStdout m_bandmapText += q; } } - if(t.indexOf("#") >= 0) { + if(t.indexOf("=") >= 0) { int n=t.size(); qDebug() << t.mid(1,n-3).trimmed(); }