1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed a window naming typo in the DSP module

This commit is contained in:
hogliux 2017-07-31 15:25:55 +01:00
parent 74fcce88ba
commit a6b128affb
4 changed files with 10 additions and 10 deletions

View file

@ -1629,7 +1629,7 @@ static const unsigned char temp_binary_data_4[] =
" sampleRate = spec.sampleRate;\r\n"
"\r\n"
" fir.state = FilterDesign<float>::designFIRLowpassWindowMethod (440.0f, sampleRate, 21,\r\n"
" WindowingFunction<float>::blackmann);\r\n"
" WindowingFunction<float>::blackman);\r\n"
" fir.prepare (spec);\r\n"
" }\r\n"
"\r\n"
@ -1660,7 +1660,7 @@ static const unsigned char temp_binary_data_4[] =
" double sampleRate = 0;\r\n"
"\r\n"
" SliderParameter cutoffParam { { 20.0, 20000.0 }, 0.4, 440.0f, \"Cutoff\", \"Hz\" };\r\n"
" ChoiceParameter typeParam { { \"Rectangular\", \"Triangular\", \"Hann\", \"Hamming\", \"Blackmann\", \"Blackmann-Harris\", \"Flat Top\", \"Kaiser\" },\r\n"
" ChoiceParameter typeParam { { \"Rectangular\", \"Triangular\", \"Hann\", \"Hamming\", \"Blackman\", \"Blackman-Harris\", \"Flat Top\", \"Kaiser\" },\r\n"
" 5, \"Windowing Function\" };\r\n"
"\r\n"
" std::vector<DSPDemoParameterBase*> parameters { &cutoffParam, &typeParam };\r\n"