From a421be5e54c9028cff06561c203ab65e5df6e611 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Tue, 28 Jul 2026 13:17:58 +1000 Subject: [PATCH] [client] audio: restore microphone volume and mute state --- client/src/audio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/audio.c b/client/src/audio.c index 3eac8657..dcc7480f 100644 --- a/client/src/audio.c +++ b/client/src/audio.c @@ -761,12 +761,12 @@ static void realRecordStart(int channels, int sampleRate, PSAudioFormat format) // if a volume level was stored, set it before we return if (audio.record.volumeChannels) audio.audioDev->record.volume( - audio.playback.volumeChannels, - audio.playback.volume); + audio.record.volumeChannels, + audio.record.volume); // set the inital mute state if (audio.audioDev->record.mute) - audio.audioDev->record.mute(audio.playback.mute); + audio.audioDev->record.mute(audio.record.mute); if (g_params.micShowIndicator) app_showRecord(true);