mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-24 13:18:38 -05:00
Fix a bug that caused FT4 decoding to fail when widegraph Start freq was less than 200 Hz.
This commit is contained in:
parent
f7a29ffa81
commit
fc4dcc6d88
@ -45,7 +45,7 @@ subroutine getcandidates4(dd,fa,fb,syncmin,nfqso,maxcand,savg,candidate, &
|
||||
enddo
|
||||
|
||||
nfa=fa/df
|
||||
if(nfa.lt.8) nfa=8
|
||||
if(nfa.lt.nint(200.0/df)) nfa=nint(200.0/df)
|
||||
nfb=fb/df
|
||||
if(nfb.gt.nint(5000.0/df)) nfb=nint(5000.0/df)
|
||||
ncand=0
|
||||
|
Loading…
Reference in New Issue
Block a user