From 90e262ccd922fe864471bf8b135e651187672743 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 12 Jan 2023 21:43:04 +0100 Subject: [PATCH] FT8 support: fix it again and again and again and again and again ... --- sdrbench/test_ft8.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrbench/test_ft8.cpp b/sdrbench/test_ft8.cpp index 321c7d58c..6b2dea0f2 100644 --- a/sdrbench/test_ft8.cpp +++ b/sdrbench/test_ft8.cpp @@ -141,7 +141,7 @@ void MainBench::testFT8(const QString& wavFile, const QString& argsStr) std::ifstream wfile; #ifdef Q_OS_WIN - wfile.open(m_settings.m_fileName.toStdWString().c_str(), std::ios::binary | std::ios::ate); + wfile.open(wavFile.toStdWString().c_str(), std::ios::binary | std::ios::ate); #else wfile.open(wavFile.toStdString().c_str(), std::ios::binary | std::ios::ate); #endif