Преглед изворни кода

put pointer assignment after test

I put the line I had moved into the loop the wrong side of the test
conditional.
dds
robsoles пре 11 година
родитељ
комит
d90ea2c06f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      filter_biquad.cpp

+ 1
- 1
filter_biquad.cpp Прегледај датотеку

@@ -35,8 +35,8 @@ void AudioFilterBiquad::update(void)
uint32_t *data, *end;
int32_t *state;
block = receiveWritable();
data = (uint32_t *)(block->data);
if (!block) return;
data = (uint32_t *)(block->data);
end = data + AUDIO_BLOCK_SAMPLES/2;
state = (int32_t *)definition;
do {

Loading…
Откажи
Сачувај