mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 1e3508c74fcb56b75574f9a2d4d723d94976a3d4 Mon Sep 17 00:00:00 2001
|
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
|
Date: Wed, 3 Jul 2019 09:19:18 +1000
|
|
Subject: [PATCH 2/2] Revert "xaudio2: Add TRACE functions to
|
|
CreateAudioReverb/CreateAudioVolumeMeter."
|
|
|
|
This reverts commit 6103b8173b119fb8c80a107f0284a83399438066.
|
|
---
|
|
dlls/xaudio2_7/xaudio_dll.c | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/dlls/xaudio2_7/xaudio_dll.c b/dlls/xaudio2_7/xaudio_dll.c
|
|
index a87e0124d3..da0b0aa606 100644
|
|
--- a/dlls/xaudio2_7/xaudio_dll.c
|
|
+++ b/dlls/xaudio2_7/xaudio_dll.c
|
|
@@ -2075,8 +2075,6 @@ HRESULT WINAPI CreateAudioVolumeMeter(IUnknown **out)
|
|
IClassFactory *cf;
|
|
HRESULT hr;
|
|
|
|
- TRACE("%p\n", out);
|
|
-
|
|
hr = make_xapo_factory(&CLSID_AudioVolumeMeter27, &IID_IClassFactory, (void**)&cf);
|
|
if(FAILED(hr))
|
|
return hr;
|
|
@@ -2093,8 +2091,6 @@ HRESULT WINAPI CreateAudioReverb(IUnknown **out)
|
|
IClassFactory *cf;
|
|
HRESULT hr;
|
|
|
|
- TRACE("%p\n", out);
|
|
-
|
|
hr = make_xapo_factory(&CLSID_AudioReverb27, &IID_IClassFactory, (void**)&cf);
|
|
if(FAILED(hr))
|
|
return hr;
|
|
--
|
|
2.20.1
|
|
|