mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
30 lines
950 B
Diff
30 lines
950 B
Diff
From 3822f907cd790b0405d2bad772a8240d559aa0aa Mon Sep 17 00:00:00 2001
|
|
From: Maarten Lankhorst <maarten.lankhorst@canonical.com>
|
|
Date: Sat, 4 Jan 2014 07:08:54 +0100
|
|
Subject: [PATCH 08/42] winmm: Load winealsa if winepulse is found
|
|
|
|
Fixes midi on winepulse
|
|
---
|
|
dlls/winmm/lolvldrv.c | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/dlls/winmm/lolvldrv.c b/dlls/winmm/lolvldrv.c
|
|
index c3b3674..56cfe35 100644
|
|
--- a/dlls/winmm/lolvldrv.c
|
|
+++ b/dlls/winmm/lolvldrv.c
|
|
@@ -544,7 +544,10 @@ static void MMDRV_Init(void)
|
|
drvA = HeapAlloc(GetProcessHeap(), 0, size);
|
|
WideCharToMultiByte(CP_ACP, 0, pv.u.pwszVal, -1, drvA, size, NULL, NULL);
|
|
|
|
- MMDRV_Install(drvA, drvA, FALSE);
|
|
+ if (!strcasecmp(drvA, "winepulse.drv"))
|
|
+ MMDRV_Install("winealsa.drv", "winealsa.drv", 0);
|
|
+ else
|
|
+ MMDRV_Install(drvA, drvA, FALSE);
|
|
|
|
HeapFree(GetProcessHeap(), 0, drvA);
|
|
PropVariantClear(&pv);
|
|
--
|
|
1.8.5.2
|
|
|