Skip to content

Commit

Permalink
Updated notes about building with the Windows 8 SDK: Get the DirectX …
Browse files Browse the repository at this point in the history
…SDK.
  • Loading branch information
slouken committed Nov 9, 2013
1 parent 33cf925 commit 2473131
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/audio/xaudio2/SDL_xaudio2.c
Expand Up @@ -32,7 +32,11 @@
/* The configure script already did any necessary checking */
# define SDL_XAUDIO2_HAS_SDK 1
#else
#include <dxsdkver.h> /* XAudio2 exists as of the March 2008 DirectX SDK */
/* XAudio2 exists as of the March 2008 DirectX SDK
The XAudio2 implementation available in the Windows 8 SDK targets Windows 8 and newer.
If you want to build SDL with XAudio2 support you should install the DirectX SDK.
*/
#include <dxsdkver.h>
#if (!defined(_DXSDK_BUILD_MAJOR) || (_DXSDK_BUILD_MAJOR < 1284))
# pragma message("Your DirectX SDK is too old. Disabling XAudio2 support.")
#else
Expand Down

0 comments on commit 2473131

Please sign in to comment.