|
From: Jerome F. <kin...@us...> - 2009-05-28 23:21:40
|
Update of /cvsroot/munt/mt32emu/src In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11612 Modified Files: partial.cpp Log Message: - Partials no longer notify of their own deactivation when already deactivated, fixing various screwups when the synth was reset (introduced with the recent poly priority changes). Index: partial.cpp =================================================================== RCS file: /cvsroot/munt/mt32emu/src/partial.cpp,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** partial.cpp 24 May 2009 21:35:58 -0000 1.67 --- partial.cpp 28 May 2009 23:21:37 -0000 1.68 *************** *** 65,68 **** --- 65,70 ---- void Partial::deactivate() { + if (!isActive()) + return; ownerPart = -1; if (poly != NULL) { |