Browse Source

Update effect_rectifier.cpp

Bug: was overwriting a read-only buffer
dds
Pete 4 years ago
parent
commit
7cafab457d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      effect_rectifier.cpp

+ 1
- 1
effect_rectifier.cpp View File

@@ -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;

Loading…
Cancel
Save