1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 22:45:06 +00:00

SoundPlayer: Use new format functions.

This commit is contained in:
asynts 2020-10-06 14:52:34 +02:00 committed by Andreas Kling
parent 97660ad46c
commit 30ca17e78f
2 changed files with 9 additions and 13 deletions

View file

@ -165,7 +165,7 @@ void PlaybackManager::next_buffer()
remove_dead_buffers();
if (!m_next_buffer) {
if (!m_connection->get_remaining_samples() && !m_paused) {
dbg() << "Exhausted samples :^)";
dbgln("Exhausted samples :^)");
stop();
}