From 9ee0586cfb154869fcaf84ef7ef6cbdf43578723 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 10 Feb 2005 21:21:13 +0000 Subject: [PATCH] Don't link with DirectSoundCreate8 as this prevents running with older versions of DirectX. --- dlls/dsound/tests/ds3d8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dsound/tests/ds3d8.c b/dlls/dsound/tests/ds3d8.c index b1df2700cf3..88eb7921b99 100644 --- a/dlls/dsound/tests/ds3d8.c +++ b/dlls/dsound/tests/ds3d8.c @@ -794,7 +794,7 @@ static HRESULT test_for_driver8(LPGUID lpGuid) int ref; /* Create the DirectSound object */ - rc=DirectSoundCreate8(lpGuid,&dso,NULL); + rc=pDirectSoundCreate8(lpGuid,&dso,NULL); ok(rc==DS_OK||rc==DSERR_NODRIVER||rc==DSERR_ALLOCATED, "DirectSoundCreate8() failed: %s\n",DXGetErrorString8(rc)); if (rc!=DS_OK)