mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Correct a flaw in ft8_decode.f90 when there are no early decodes.
This commit is contained in:
parent
aa2c965b85
commit
9f974b48e0
@ -83,6 +83,10 @@ contains
|
||||
else
|
||||
ndecodes=ndec_early
|
||||
endif
|
||||
if(nzhsym.eq.47 .and. ndec_early.eq.0) then
|
||||
dd1=dd
|
||||
go to 800
|
||||
endif
|
||||
if(nzhsym.eq.47 .and. ndec_early.ge.1) then
|
||||
lsubtracted=.false.
|
||||
lrefinedt=.true.
|
||||
|
@ -316,9 +316,10 @@ program jt9
|
||||
id2a(nearly*3456+1:)=0
|
||||
call multimode_decoder(shared_data%ss,id2a, &
|
||||
shared_data%params,nfsample)
|
||||
nearly=50
|
||||
id2a(nearly*3456+1:50*3456)=shared_data%id2(nearly*3456+1:50*3456)
|
||||
id2a(50*3456+1:)=0
|
||||
shared_data%params%nzhsym=50
|
||||
shared_data%params%nzhsym=nearly
|
||||
call multimode_decoder(shared_data%ss,id2a, &
|
||||
shared_data%params,nfsample)
|
||||
cycle
|
||||
|
Loading…
Reference in New Issue
Block a user