Rename instance()->instantiate() when it's a verb
This commit is contained in:
@@ -111,9 +111,9 @@ void AudioEffectDelayInstance::_process_chunk(const AudioFrame *p_src_frames, Au
|
||||
}
|
||||
}
|
||||
|
||||
Ref<AudioEffectInstance> AudioEffectDelay::instance() {
|
||||
Ref<AudioEffectInstance> AudioEffectDelay::instantiate() {
|
||||
Ref<AudioEffectDelayInstance> ins;
|
||||
ins.instance();
|
||||
ins.instantiate();
|
||||
ins->base = Ref<AudioEffectDelay>(this);
|
||||
|
||||
float ring_buffer_max_size = MAX_DELAY_MS + 100; //add 100ms of extra room, just in case
|
||||
|
||||
Reference in New Issue
Block a user