Changes in src/synth/sampler.c [eaaba62:a682dbe]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/synth/sampler.c
reaaba62 ra682dbe 83 83 for (i = 0; i < output->height; i++) { 84 84 for (j = 0; j < output->length; j++) { 85 output->data[i][j] += o->source_output_multi->data[i][j];85 output->data[i][j] = o->source_output_multi->data[i][j]; 86 86 } 87 87 } 88 if ( read < o->blocksize) o->playing = 0;88 if (read == 0) o->playing = 0; 89 89 } 90 90 if (input && input != output) {
Note: See TracChangeset
for help on using the changeset viewer.