Skip to content

Commit

Permalink
Quick bugfix of PAT2SMP (yikes)
Browse files Browse the repository at this point in the history
  • Loading branch information
8bitbubsy committed Apr 26, 2020
1 parent 46132b2 commit 0ba37bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pt2_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ void outputAudio(int16_t *target, int32_t numSamples)
for (i = 0; i < samplesTodo; i++)
{
processMixedSamplesRaw(i, out);
outStream[i] = (out[0] + out[1]) >> 1;
outStream[i] = out[0];
}

editor.pat2SmpPos += samplesTodo;
Expand Down

0 comments on commit 0ba37bb

Please sign in to comment.