[PATCH] winepulse.drv: Use the official PulseAudio case for the endpoint id.
Signed-off-by: Francois Gouget <fgouget(a)free.fr> --- It looks like this is just an opaque string so we might as well write PulseAudio the way it's normally written (references being Wikipedia and the PulseAudio website). --- dlls/winepulse.drv/mmdevdrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winepulse.drv/mmdevdrv.c b/dlls/winepulse.drv/mmdevdrv.c index ab4cccd7242..35a66e18d8a 100644 --- a/dlls/winepulse.drv/mmdevdrv.c +++ b/dlls/winepulse.drv/mmdevdrv.c @@ -147,7 +147,7 @@ struct ACImpl { AudioSessionWrapper *session_wrapper; }; -static const WCHAR defaultW[] = L"Pulseaudio"; +static const WCHAR defaultW[] = L"PulseAudio"; static const IAudioClient3Vtbl AudioClient3_Vtbl; static const IAudioRenderClientVtbl AudioRenderClient_Vtbl; -- 2.20.1
participants (1)
-
Francois Gouget