Audio level of patterns were too loud.

This commit is contained in:
Andreas Eversberg 2019-12-04 17:23:15 +01:00
parent 4053677c76
commit b2c0b64b2d
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ static void get_process_patterns(process_t *process, int16_t *samples, int lengt
if (pos >= size) if (pos >= size)
*samples++ = 0; *samples++ = 0;
else else
*samples++ = spl[pos] >> 1; *samples++ = spl[pos] >> 2;
if (++pos == max) if (++pos == max)
pos = 0; pos = 0;
} }