Explorar el Código
Update effect_rectifier.cpp
Bug: was overwriting a read-only buffer
dds
Pete
hace 4 años
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han
modificado 1 ficheros con
1 adiciones y
1 borrados
-
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; |