mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
Fixed ProcessorOptions rvalue ref-qualifier issue
This commit is contained in:
parent
3682fceb35
commit
e82f571318
1 changed files with 2 additions and 3 deletions
|
|
@ -510,9 +510,8 @@ void extractWavetables()
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
static gin::ProcessorOptions createProcessorOptions()
|
static gin::ProcessorOptions createProcessorOptions()
|
||||||
{
|
{
|
||||||
gin::ProcessorOptions opts;
|
return gin::ProcessorOptions()
|
||||||
opts.hasMidiLearn = true;
|
.withMidiLearn();
|
||||||
return opts;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WavetableAudioProcessor::WavetableAudioProcessor()
|
WavetableAudioProcessor::WavetableAudioProcessor()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue