From 27061057f788968f5939d6ed6ab859f1ff89a613 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Sun, 12 Jul 2015 14:12:31 +0000 Subject: [PATCH] Minor tweak to WsprTxScheduler.cpp git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5717 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- WsprTxScheduler.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/WsprTxScheduler.cpp b/WsprTxScheduler.cpp index 6941ad4b8..7319760f5 100644 --- a/WsprTxScheduler.cpp +++ b/WsprTxScheduler.cpp @@ -68,6 +68,11 @@ int tx_add_one(char* tx) } } } + // last resort - see if we can set the last slot to 1 + if( tx[58]==0 && tx[59]==0 ) { + tx[59]=1; + return 1; + } return 0; }