From 2e301b59e68bceef0a660fc523de29f3567287c9 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 9 Jul 2021 08:40:44 -0400 Subject: [PATCH] Should read 56 s of data (not 52 s) in getfile(). --- map65/getfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/map65/getfile.cpp b/map65/getfile.cpp index 93b23d01c..9f2ede4c2 100644 --- a/map65/getfile.cpp +++ b/map65/getfile.cpp @@ -8,7 +8,7 @@ extern qint16 id[4*60*96000]; void getfile(QString fname, bool xpol, int dbDgrd) { - int npts=2*52*96000; + int npts=2*56*96000; if(xpol) npts=2*npts; // Degrade S/N by dbDgrd dB -- for tests only!!