diff --git a/src/managerimpl.cpp b/src/managerimpl.cpp index eaf4706d6d2af18b8d6afafb8bc34f4256a901f0..a5a427dd0c03a0c344544d8f6a36f36cf307236a 100644 --- a/src/managerimpl.cpp +++ b/src/managerimpl.cpp @@ -817,7 +817,7 @@ ManagerImpl::playATone(Tone::TONEID toneId) { SFLDataFormat buf[nbSampling]; audioloop->getNext(buf, (int) nbSampling); if ( audiolayer ) { - audiolayer->putUrgent( buf, sizeof(SFLDataFormat)*nbSampling ); + //audiolayer->putUrgent( buf, sizeof(SFLDataFormat)*nbSampling ); } else return false; @@ -906,7 +906,7 @@ ManagerImpl::ringtone() int size = _audiofile.getSize(); SFLDataFormat output[ size ]; _audiofile.getNext(output, size , 100); - audiolayer->putUrgent( output , size ); + //audiolayer->putUrgent( output , size ); } else { ringback(); }