Browse Source
Update effect_rectifier.cpp
Bug: was overwriting a read-only buffer
dds
Pete
4 years ago
No account linked to committer's email address
1 changed files with
1 additions and
1 deletions
-
effect_rectifier.cpp
|
|
@@ -30,7 +30,7 @@ |
|
|
|
|
|
|
|
void AudioEffectRectifier::update(void) |
|
|
|
{ |
|
|
|
audio_block_t *block = receiveReadOnly(); |
|
|
|
audio_block_t *block = receiveWritable(); |
|
|
|
if (!block) return; |
|
|
|
|
|
|
|
int16_t *p = block->data; |