mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 04:42:28 -04:00
Fix an off-by-1 bug introduced in the previous commit.
This commit is contained in:
parent
04b22ce250
commit
a02cbabb99
@ -167,7 +167,7 @@ subroutine q65_sync(nutc,iwave,ntrperiod,mode_q65,codewords,ncw,nsps, &
|
|||||||
endif
|
endif
|
||||||
n=n+1
|
n=n+1
|
||||||
if(j.ge.1 .and. j.le.jz) then
|
if(j.ge.1 .and. j.le.jz) then
|
||||||
do i=0,LL
|
do i=0,LL-1
|
||||||
s3(i-64,n)=s1(i+i1,j)
|
s3(i-64,n)=s1(i+i1,j)
|
||||||
enddo
|
enddo
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user