From d253a59ee62baa9a811da65b589bed4e971b1031 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 27 Feb 2025 14:31:07 -0800 Subject: [PATCH] Bug Fix: Correctly set audio volume on play start Play start was missing this somehow, after a specific commit removed some code. Signed-off-by: Christopher Snowhill --- Audio/AudioPlayer.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Audio/AudioPlayer.m b/Audio/AudioPlayer.m index 6fbcd4ed1..20a1e3fe4 100644 --- a/Audio/AudioPlayer.m +++ b/Audio/AudioPlayer.m @@ -78,6 +78,7 @@ output = [[OutputNode alloc] initWithController:self previous:nil]; } [output setup]; + [output setVolume:volume]; @synchronized(chainQueue) { for(id anObject in chainQueue) { [anObject setShouldContinue:NO];