mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 10:05:46 -05:00
Scope: removed useless resizing of complex trace by 4 times the amount actually needed
This commit is contained in:
parent
489a55a886
commit
7faee5f212
@ -723,7 +723,7 @@ private:
|
||||
|
||||
for (std::vector<TraceBackBuffer>::iterator it = m_traceBackBuffers.begin(); it != m_traceBackBuffers.end(); ++it)
|
||||
{
|
||||
it->resize(4*m_traceSize); // TODO: why 4?
|
||||
it->resize(m_traceSize); // was multiplied by 4
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user