Fix merge compilation issue.

This commit is contained in:
Jonathan Naylor 2026-02-19 15:59:46 +00:00
parent 78216afbb7
commit 3fd84d5ed4
2 changed files with 4 additions and 4 deletions

6
IO.cpp
View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2015,2016,2017,2018,2020,2021,2023,2025 by Jonathan Naylor G4KLX * Copyright (C) 2015,2016,2017,2018,2020,2021,2023,2025,2026 by Jonathan Naylor G4KLX
* Copyright (C) 2015 by Jim Mclaughlin KI6ZUM * Copyright (C) 2015 by Jim Mclaughlin KI6ZUM
* Copyright (C) 2016 by Colin Durbridge G4EML * Copyright (C) 2016 by Colin Durbridge G4EML
* *
@ -554,9 +554,9 @@ void CIO::process()
else if (m_modemState == STATE_FM) { else if (m_modemState == STATE_FM) {
bool cos = getCOSInt(); bool cos = getCOSInt();
#if defined(USE_DCBLOCKER) #if defined(USE_DCBLOCKER)
fm.samples(cos, dcSamples, RX_BLOCK_SIZE); fm.samples(cos, dcSamples, rssi, RX_BLOCK_SIZE);
#else #else
fm.samples(cos, samples, RX_BLOCK_SIZE); fm.samples(cos, samples, rssi, RX_BLOCK_SIZE);
#endif #endif
} }
#endif #endif

View File

@ -19,6 +19,6 @@
#if !defined(VERSION_H) #if !defined(VERSION_H)
#define VERSION_H #define VERSION_H
#define VERSION "20260218" #define VERSION "20260219"
#endif #endif