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(); }