mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-23 04:28:36 -04:00
Fix the "off by one" issue in measuring f0 for list decodes.
This commit is contained in:
parent
3dd34e13ba
commit
8b9b71c894
@ -142,7 +142,7 @@ subroutine q65_sync(nutc,iwave,nmax,mode_q65,codewords,ncw,nsps,nfqso,ntol, &
|
||||
ijpk=maxloc(ccf)
|
||||
ipk=ijpk(1)-ia-1
|
||||
jpk=ijpk(2)-53-1
|
||||
f0=nfqso + ipk*df
|
||||
f0=nfqso + (ipk-1)*df
|
||||
xdt=jpk*dtstep
|
||||
imsg_best=imsg
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user