From dbf12a440721dd37e46388183299da6cef92ba37 Mon Sep 17 00:00:00 2001 From: Harry van Haaren Date: Thu, 16 May 2013 16:51:10 +0100 Subject: [PATCH] -Removed prints from looper --- src/looper.cxx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/looper.cxx b/src/looper.cxx index fab1430..49a7309 100644 --- a/src/looper.cxx +++ b/src/looper.cxx @@ -11,14 +11,12 @@ void Looper::setState(State s) { if ( state == STATE_RECORDING ) { - cout << "stopRecordOnBar = true" << endl; stopRecordOnBar = true; } // ensure we're not setting eg PLAY_QUEUED, if we're already PLAYING if ( static_cast(s) != static_cast(state) + 1) { - cout << "new state " << s << endl; state = s; if (state == STATE_RECORDING) @@ -77,7 +75,6 @@ void Looper::bar() if ( playedBeats >= numBeats ) { - //cout << "Looper " << track << " restting to 0 " << endl; playPoint = 0; playedBeats = 0; }