FT8: Fix jt9 crash when nagain is invoked.

This commit is contained in:
Steven Franke 2020-12-25 12:22:25 -06:00 committed by Bill Somerville
parent 4081be94e1
commit b51bda4806
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
1 changed files with 13 additions and 2 deletions

View File

@ -35,8 +35,19 @@ subroutine get_spectrum_baseline(dd,nfa,nfb,sbase)
savg=savg + s(1:NH1,j) !Average spectrum
enddo
if(nfa.lt.100) nfa=100
if(nfb.gt.4910) nfb=4910
nwin=nfb-nfa
if(nfa.lt.100) then
nfa=100
if(nwin.lt.100) then ! nagain
nfb=nfa+nwin
endif
endif
if(nfb.gt.4910) then
nfb=4910
if(nwin.lt.100) then
nfa=nfb-nwin
endif
endif
call baseline(savg,nfa,nfb,sbase)
return