From c93a2a3e64298a6827f50ebbec7f66f7863c561e Mon Sep 17 00:00:00 2001 From: Martin Williams Date: Fri, 24 Jan 2025 15:33:20 +0000 Subject: [PATCH] Fix MemorySource::playAsync for ManagedBuffer --- source/streams/MemorySource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/streams/MemorySource.cpp b/source/streams/MemorySource.cpp index 36a437f0..d4bc6fe7 100644 --- a/source/streams/MemorySource.cpp +++ b/source/streams/MemorySource.cpp @@ -157,7 +157,7 @@ void MemorySource::playAsync(const void *data, int length, int count) */ void MemorySource::playAsync(ManagedBuffer b, int count) { - this->play(&b[0], b.length(), count); + this->playAsync(&b[0], b.length(), count); } /**