mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +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()
|
||||
{
|
||||
gin::ProcessorOptions opts;
|
||||
opts.hasMidiLearn = true;
|
||||
return opts;
|
||||
return gin::ProcessorOptions()
|
||||
.withMidiLearn();
|
||||
}
|
||||
|
||||
WavetableAudioProcessor::WavetableAudioProcessor()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue