zynaddsubfx

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

commit ebbb2009ec944a6c8772977df402424cd59a6076
parent 91071fa392611bddc78cf8fa338856490cc26411
Author: fundamental <mark.d.mccurry@gmail.com>
Date:   Sat, 10 Oct 2015 12:21:10 -0400

Fix Effect Copy/Paste

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

diff --git a/src/Effects/EffectMgr.cpp b/src/Effects/EffectMgr.cpp @@ -402,7 +402,7 @@ void EffectMgr::paste(EffectMgr &e) changeeffectrt(e.nefx, true); changepresetrt(e.preset, true); for(int i=0;i<128;++i) - seteffectparrt(e.settings[i], i); + seteffectparrt(i, e.settings[i]); } void EffectMgr::add2XML(XMLwrapper *xml)