Rebase against 3f281a3baad9f5f8f875da902718a1d5d3dc0d9f

This commit is contained in:
Zebediah Figura
2018-04-13 18:45:57 -05:00
parent 3fe54232fa
commit 11233f0810
6 changed files with 180 additions and 15 deletions

View File

@@ -0,0 +1,26 @@
From f9e60ebf4fab57207c3a836110575c938c9bcd24 Mon Sep 17 00:00:00 2001
From: Thomas Crider <gloriouseggroll@gmail.com>
Date: Fri, 13 Apr 2018 18:09:21 -0400
Subject: [PATCH] xaudio2: revert commit
b747d6f6ccdf1699a9242a570d681fa246de592e, fixes #44883
---
dlls/xaudio2_7/xaudio_dll.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/xaudio2_7/xaudio_dll.c b/dlls/xaudio2_7/xaudio_dll.c
index 28cf98565b..647d2fdab3 100644
--- a/dlls/xaudio2_7/xaudio_dll.c
+++ b/dlls/xaudio2_7/xaudio_dll.c
@@ -1895,7 +1895,7 @@ static HRESULT WINAPI IXAudio2Impl_CommitChanges(IXAudio2 *iface,
TRACE("(%p)->(0x%x): stub!\n", This, operationSet);
- return E_NOTIMPL;
+ return S_OK;
}
static void WINAPI IXAudio2Impl_GetPerformanceData(IXAudio2 *iface,
--
2.17.0

View File

@@ -0,0 +1 @@
Fixes: [44883] Return S_OK from IXAudio2Impl_CommitChanges()