mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-23 04:28:36 -04:00
additional array sizes needing adjustment
This commit is contained in:
parent
3fdd69d021
commit
2e6a4f597b
@ -1,6 +1,6 @@
|
||||
module ft8_a7
|
||||
|
||||
parameter(MAXDEC=100)
|
||||
parameter(MAXDEC=200)
|
||||
|
||||
! For the following three arrays
|
||||
! First index i=decode number in this sequence
|
||||
@ -43,7 +43,7 @@ subroutine ft8_a7_save(nutc,dt,f,msg)
|
||||
! Add this decode to current table for this sequence
|
||||
ndec(j,1)=ndec(j,1)+1 !Number of decodes in this sequence
|
||||
i=ndec(j,1) !i is index of a new table entry
|
||||
if(i.ge.MAXDEC-1) return !Prevent table overflow
|
||||
if(i.gt.MAXDEC) return !Prevent table overflow (indexes start at 1)
|
||||
|
||||
dt0(i,j,1)=dt !Save dt in table
|
||||
f0(i,j,1)=f !Save f in table
|
||||
|
@ -58,7 +58,7 @@ contains
|
||||
integer*2 iwave(15*12000)
|
||||
integer apsym2(58),aph10(10)
|
||||
character datetime*13,msg37*37
|
||||
character*37 allmessages(200)
|
||||
character*37 allmessages(MAX_EARLY)
|
||||
character*12 ctime
|
||||
integer allsnrs(MAX_EARLY)
|
||||
integer itone(NN)
|
||||
|
Loading…
Reference in New Issue
Block a user