zynaddsubfx

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

commit 0d9c504f5c4b0fca52c17343e758a637be93a1d7
parent 158525bf09be375da84d284338f50a5656608334
Author: fundamental <[email protected]>
Date:   Wed, 30 Sep 2015 21:43:08 -0400

NotePool: Disable Verbose Printing

Diffstat:
Msrc/Containers/NotePool.cpp | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/Containers/NotePool.cpp b/src/Containers/NotePool.cpp @@ -109,7 +109,7 @@ void NotePool::applyLegato(LegatoParams &par) //Note that isn't KEY_PLAYING or KEY_RELASED_AND_SUSTAINING bool NotePool::existsRunningNote(void) const { - printf("runing note # =%d\n", getRunningNotes()); + //printf("runing note # =%d\n", getRunningNotes()); return getRunningNotes(); } @@ -188,7 +188,7 @@ void NotePool::kill(NoteDescriptor &d) void NotePool::kill(SynthDescriptor &s) { - printf("Kill synth...\n"); + //printf("Kill synth...\n"); s.note->memory.dealloc(s.note); needs_cleaning = true; } @@ -212,8 +212,8 @@ void NotePool::cleanup(void) needs_cleaning = false; int new_length[POLYPHONY] = {0}; int cur_length[POLYPHONY] = {0}; - printf("Cleanup Start\n"); - dump(); + //printf("Cleanup Start\n"); + //dump(); //Identify the current length of all segments //and the lengths discarding invalid entries @@ -260,8 +260,8 @@ void NotePool::cleanup(void) sdesc[cum_new++] = sdesc[i]; memset(sdesc+cum_new, 0, sizeof(*sdesc)*(POLYPHONY*EXPECTED_USAGE-cum_new)); } - printf("Cleanup Done\n"); - dump(); + //printf("Cleanup Done\n"); + //dump(); } void NotePool::dump(void)