diff --git a/Outputs/Speaker.hpp b/Outputs/Speaker.hpp index 918dbe4a6..bceeb1d5b 100644 --- a/Outputs/Speaker.hpp +++ b/Outputs/Speaker.hpp @@ -90,11 +90,12 @@ class Speaker { protected: void enqueue(std::function function) { - _queue->enqueue(function); + function(); +// _queue->enqueue(function); } void flush() { - _queue->flush(); +// _queue->flush(); } std::unique_ptr _buffer_in_progress;