Fixed delete[] in soapy.h

This commit is contained in:
Ryzerth 2020-08-16 18:22:22 +02:00
parent b2191c5d2c
commit cff5987329

View File

@ -530,9 +530,10 @@ void drawWindow() {
if (ImGui::Button("Refresh", ImVec2(menuColumnWidth - ImGui::GetCursorPosX(), 0.0f))) { if (ImGui::Button("Refresh", ImVec2(menuColumnWidth - ImGui::GetCursorPosX(), 0.0f))) {
soapy.refresh(); soapy.refresh();
if (noDevice && soapy.devList.size() > 0) { if (noDevice && soapy.devList.size() > 0) {
sourceName = soapy.devNameList[0];
soapy.setDevice(soapy.devList[0]); soapy.setDevice(soapy.devList[0]);
if (config::config["sourceSettings"][soapy.devNameList[0]]) { if (config::config["sourceSettings"][sourceName]) {
loadSourceConfig(soapy.devNameList[0]); loadSourceConfig(sourceName);
} }
} }
} }