1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Print feature for DirectSound.

This commit is contained in:
Themaister 2011-12-25 01:59:30 +01:00
parent 70f07196ea
commit 381498e945
2 changed files with 7 additions and 0 deletions

View File

@ -74,6 +74,12 @@ static const bool _pulse_supp = true;
static const bool _pulse_supp = false;
#endif
#ifdef HAVE_DSOUND
static const bool _dsound_supp = true;
#else
static const bool _dsound_supp = false;
#endif
#ifdef HAVE_XAUDIO
static const bool _xaudio_supp = true;
#else

View File

@ -410,6 +410,7 @@ static void print_features(void)
_PSUPP(rsound, "RSound", "audio driver");
_PSUPP(roar, "RoarAudio", "audio driver");
_PSUPP(pulse, "PulseAudio", "audio driver");
_PSUPP(dsound, "DirectSound", "audio driver");
_PSUPP(xaudio, "XAudio2", "audio driver");
_PSUPP(al, "OpenAL", "audio driver");
_PSUPP(dylib, "External", "External filter and driver support");