Skip to content

Commit 0ba37bb

Browse files
committed
Quick bugfix of PAT2SMP (yikes)
1 parent 46132b2 commit 0ba37bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pt2_audio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ void outputAudio(int16_t *target, int32_t numSamples)
892892
for (i = 0; i < samplesTodo; i++)
893893
{
894894
processMixedSamplesRaw(i, out);
895-
outStream[i] = (out[0] + out[1]) >> 1;
895+
outStream[i] = out[0];
896896
}
897897

898898
editor.pat2SmpPos += samplesTodo;

0 commit comments

Comments
 (0)