Skip to content

Commit

Permalink
Merge pull request #226 from monsieurgustav/master
Browse files Browse the repository at this point in the history
buildfix FFTAnalyzerManager::getFFTDataFromScript
  • Loading branch information
benkuper authored Mar 8, 2024
2 parents 7ea1772 + d34e483 commit df93eb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ var FFTAnalyzerManager::getFFTDataFromScript(const var::NativeFunctionArgs& a)

float tmpScopeData[scopeSize];
manager->copyScopeData(tmpScopeData);
resultArray.addArray(tmpScopeData, scopeSize);
resultArray.addArray((float*)tmpScopeData, scopeSize);
return result;
}

0 comments on commit df93eb1

Please sign in to comment.