mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
-Removed prints from looper
This commit is contained in:
parent
cf8a22241e
commit
dbf12a4407
1 changed files with 0 additions and 3 deletions
|
@ -11,14 +11,12 @@ void Looper::setState(State s)
|
||||||
{
|
{
|
||||||
if ( state == STATE_RECORDING )
|
if ( state == STATE_RECORDING )
|
||||||
{
|
{
|
||||||
cout << "stopRecordOnBar = true" << endl;
|
|
||||||
stopRecordOnBar = true;
|
stopRecordOnBar = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ensure we're not setting eg PLAY_QUEUED, if we're already PLAYING
|
// ensure we're not setting eg PLAY_QUEUED, if we're already PLAYING
|
||||||
if ( static_cast<int>(s) != static_cast<int>(state) + 1)
|
if ( static_cast<int>(s) != static_cast<int>(state) + 1)
|
||||||
{
|
{
|
||||||
cout << "new state " << s << endl;
|
|
||||||
state = s;
|
state = s;
|
||||||
|
|
||||||
if (state == STATE_RECORDING)
|
if (state == STATE_RECORDING)
|
||||||
|
@ -77,7 +75,6 @@ void Looper::bar()
|
||||||
|
|
||||||
if ( playedBeats >= numBeats )
|
if ( playedBeats >= numBeats )
|
||||||
{
|
{
|
||||||
//cout << "Looper " << track << " restting to 0 " << endl;
|
|
||||||
playPoint = 0;
|
playPoint = 0;
|
||||||
playedBeats = 0;
|
playedBeats = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue