From b0b3ba438b8d79df027de610a952052f550e6e87 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 7 Jul 2021 13:53:28 -0400 Subject: [PATCH] Increase length of .tf2 and .iq files from 52 s to 56 s. --- map65/getfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map65/getfile.cpp b/map65/getfile.cpp index 39e7257aa..93b23d01c 100644 --- a/map65/getfile.cpp +++ b/map65/getfile.cpp @@ -56,7 +56,7 @@ void getfile(QString fname, bool xpol, int dbDgrd) void savetf2(QString fname, bool xpol) { - int npts=2*52*96000; + int npts=2*56*96000; if(xpol) npts=2*npts; qint16* buf=(qint16*)malloc(2*npts);