Tx ph.1: add Tx tab (2). Fixed core dump

This commit is contained in:
f4exb 2016-10-22 05:07:48 +02:00
parent 60912d01c9
commit 4b02072fe4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ SampleSourceFifo::SampleSourceFifo(uint32_t size, uint32_t samplesChunkSize) :
m_ir(0),
m_iw(size/2)
{
assert(samplesChunkSize < m_size/4);
assert(samplesChunkSize <= m_size/4);
m_data.resize(2*m_size);
}