From 61c18f9eb8ca443a6253545fd615950111d69f66 Mon Sep 17 00:00:00 2001 From: Ross Bencina Date: Fri, 19 Jul 2024 09:06:17 +1000 Subject: [PATCH] improve comment --- src/hostapi/wasapi/pa_win_wasapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hostapi/wasapi/pa_win_wasapi.c b/src/hostapi/wasapi/pa_win_wasapi.c index f5920b5fd..47b97c5a5 100644 --- a/src/hostapi/wasapi/pa_win_wasapi.c +++ b/src/hostapi/wasapi/pa_win_wasapi.c @@ -2992,7 +2992,7 @@ static PaError GetClosestFormat(IAudioClient *client, const PaDeviceInfo *baseDe // Limit this workaround to Realtek devices only if (strstr(baseDeviceInfo->name, "Realtek") != NULL) { - // Force internal Mono to Stereo mixer + // Force our Mono to Stereo mixer mechanism outWavex->Format.nChannels = 2; UpdateWaveFormatBlockAlign((WAVEFORMATEX *)outWavex); }