[PATCH 1/4] dmusic: Call SetSynkSink() first to initialize the Synth

Michael Stefaniuc mstefani at winehq.org
Thu Jan 20 14:20:19 CST 2022


Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
---
 dlls/dmusic/port.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/dmusic/port.c b/dlls/dmusic/port.c
index 7bd2afdb9a3..165bd520191 100644
--- a/dlls/dmusic/port.c
+++ b/dlls/dmusic/port.c
@@ -851,13 +851,13 @@ HRESULT synth_port_create(IDirectMusic8Impl *parent, DMUS_PORTPARAMS *port_param
         hr = CoCreateInstance(&CLSID_DirectMusicSynthSink, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectMusicSynthSink, (void**)&obj->synth_sink);
 
     if (SUCCEEDED(hr))
-        hr = IDirectMusicSynth_SetMasterClock(obj->synth, obj->pLatencyClock);
+        hr = IDirectMusicSynth_SetSynthSink(obj->synth, obj->synth_sink);
 
     if (SUCCEEDED(hr))
-        hr = IDirectMusicSynthSink_SetMasterClock(obj->synth_sink, obj->pLatencyClock);
+        hr = IDirectMusicSynth_SetMasterClock(obj->synth, obj->pLatencyClock);
 
     if (SUCCEEDED(hr))
-        hr = IDirectMusicSynth_SetSynthSink(obj->synth, obj->synth_sink);
+        hr = IDirectMusicSynthSink_SetMasterClock(obj->synth_sink, obj->pLatencyClock);
 
     if (SUCCEEDED(hr))
         hr = IDirectMusicSynth_Open(obj->synth, port_params);
-- 
2.31.1




More information about the wine-devel mailing list