mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-12-25 10:28:28 +01:00
Fixed bad allocation of waterfall framebuffer
This commit is contained in:
parent
f1fd6fce7a
commit
07d3fa2034
@ -308,6 +308,7 @@ namespace ImGui {
|
|||||||
delete[] waterfallFb;
|
delete[] waterfallFb;
|
||||||
latestFFT = new float[dataWidth];
|
latestFFT = new float[dataWidth];
|
||||||
waterfallFb = new uint32_t[dataWidth * waterfallHeight];
|
waterfallFb = new uint32_t[dataWidth * waterfallHeight];
|
||||||
|
memset(waterfallFb, 0, dataWidth * waterfallHeight * sizeof(uint32_t));
|
||||||
for (int i = 0; i < dataWidth; i++) {
|
for (int i = 0; i < dataWidth; i++) {
|
||||||
latestFFT[i] = -1000.0f; // Hide everything
|
latestFFT[i] = -1000.0f; // Hide everything
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user