1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

AM demod: make squelch tail twice faster as attack

This commit is contained in:
f4exb 2015-12-26 21:30:30 +01:00
parent 61d6d90ce3
commit 73bd332619

View File

@ -95,9 +95,9 @@ void AMDemod::feed(const SampleVector::const_iterator& begin, const SampleVector
}
else
{
if (m_squelchCount > 0)
if (m_squelchCount > 1)
{
m_squelchCount--;
m_squelchCount -= 2;
}
}