From 2012d763edcbbf160df12837739fa78c4f35f8f9 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 20 May 2013 19:24:49 +0000 Subject: [PATCH] Correct two constants (messed up in multiple mods earlier today). git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3286 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 810591526..2c496e780 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1243,7 +1243,7 @@ void MainWindow::decode() //decode() char *from = (char*) jt9com_.ss; int size=sizeof(jt9com_); if(jt9com_.newdat==0) { - int noffset = 4*184*22000 + 4*22000 + 4*2*1800*1500 + 2*1800*12000; + int noffset = 4*184*NSMAX + 4*NSMAX + 4*2*NTMAX*1500 + 2*NTMAX*12000; to += noffset; from += noffset; size -= noffset;