zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit 14a287917136a662384b416098f0ffae0693d67e
parent 946ca85dae50c57d3332fce0d1bac6a867b5a103
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Thu, 28 Jan 2016 19:15:07 -0500

Master: Fix Default Inverted Left Right

Somewhere left and right audio channels were flipped.
This fixes that long standing issue.
http://sourceforge.net/p/zynaddsubfx/bugs/117/

Diffstat:
Msrc/Misc/Master.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Misc/Master.cpp b/src/Misc/Master.cpp @@ -631,7 +631,7 @@ int msg_id=0; /* * Master audio out (the final sound) */ -void Master::AudioOut(float *outl, float *outr) +void Master::AudioOut(float *outr, float *outl) { //Danger Limits if(memory->lowMemory(2,1024*1024))