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
This commit is contained in:
Steven Franke 2015-07-12 14:12:31 +00:00
parent 5e3ec0e891
commit 27061057f7
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}