From 43db33cd95abe71e32297865c987d50d24bf5fb0 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 6 Aug 2011 15:11:26 -0700 Subject: [PATCH] Fix a call to IDirectSound3DListener_GetDopplerFactor --- primary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/primary.c b/primary.c index 91432b310fc..fbebdee8b25 100644 --- a/primary.c +++ b/primary.c @@ -1011,7 +1011,7 @@ static HRESULT WINAPI DS8Primary3D_GetAllParameters(IDirectSound3DListener *ifac IDirectSound3DListener_GetOrientation(iface, &listener->vOrientFront, &listener->vOrientTop); IDirectSound3DListener_GetDistanceFactor(iface, &listener->flDistanceFactor); IDirectSound3DListener_GetRolloffFactor(iface, &listener->flRolloffFactor); - IDirectSound3DListener_GetRolloffFactor(iface, &listener->flDopplerFactor); + IDirectSound3DListener_GetDopplerFactor(iface, &listener->flDopplerFactor); popALContext(); LeaveCriticalSection(This->crst); -- 2.11.4.GIT