Skip to content
Snippets Groups Projects
Commit 72df8e30 authored by leprob001's avatar leprob001
Browse files

Bugfix, getSoundsourcesWithAppliedToa was not executing correctly.

parent e81cd540
No related branches found
No related tags found
No related merge requests found
......@@ -9,10 +9,10 @@ involvedSoundsources = struct();
for i = 1:length(involvedSoundsourceNames)
if artoa.soundsources.hasAppliedToa(involvedSoundsourceNames{i}, artoaWorkspace.toaData.soundSource)
extracted = artoa.data.extractSoundsourcesFromStruct( ...
involvedSoundsourceNames{i}, ...
{involvedSoundsourceNames{i}}, ...
artoaWorkspace.filteredSoundsources ...
);
involvedSoundsources.(involvedSoundsourceNames{i}) = extracted;
involvedSoundsources.(involvedSoundsourceNames{i}) = extracted{1};
clear extracted;
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment