浏览代码

Update effect_rectifier.cpp

Bug: was overwriting a read-only buffer
dds
Pete 4 年前
父节点
当前提交
7cafab457d
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      effect_rectifier.cpp

+ 1
- 1
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;

正在加载...
取消
保存