mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-04 15:12:25 -04:00
Fix a flaw in FT4 auto-sequencing.
This commit is contained in:
parent
50d4120c0c
commit
f24d45cb17
@ -3051,7 +3051,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
if(m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64" or m_mode=="FT8") {
|
if(m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64" or m_mode=="FT8" or m_mode=="FT4") {
|
||||||
int n=line_read.indexOf("f");
|
int n=line_read.indexOf("f");
|
||||||
if(n<0) n=line_read.indexOf("d");
|
if(n<0) n=line_read.indexOf("d");
|
||||||
if(n>0) {
|
if(n>0) {
|
||||||
@ -3192,7 +3192,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
|
|
||||||
//### I think this is where we are preventing Hounds from spotting Fox ###
|
//### I think this is where we are preventing Hounds from spotting Fox ###
|
||||||
if(m_mode!="FT8" or (SpecOp::HOUND != m_config.special_op_id())) {
|
if(m_mode!="FT8" or (SpecOp::HOUND != m_config.special_op_id())) {
|
||||||
if(m_mode=="FT8" or m_mode=="QRA64" or m_mode=="JT4" or m_mode=="JT65" or m_mode=="JT9") {
|
if(m_mode=="FT8" or m_mode=="FT4" or m_mode=="QRA64" or m_mode=="JT4" or m_mode=="JT65" or m_mode=="JT9") {
|
||||||
auto_sequence (decodedtext, 25, 50);
|
auto_sequence (decodedtext, 25, 50);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user