diff --git a/FlippR-Driver/src/output/items/detail/Sound.cpp b/FlippR-Driver/src/output/items/detail/Sound.cpp index 16a5c91..6f6f2a2 100644 --- a/FlippR-Driver/src/output/items/detail/Sound.cpp +++ b/FlippR-Driver/src/output/items/detail/Sound.cpp @@ -29,8 +29,7 @@ Sound::Sound(std::shared_ptr pin_controller, const uint void Sound::play() { CLOG(INFO, OUTPUT_LOGGER) << "Play Sound " << id << " " << name; - //this->play_task = std::async(std::launch::async, &Sound::playTask, this); - this->playTask(); + this->play_task = std::async(std::launch::async, &Sound::playTask, this); } void Sound::playTask()