mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-17 22:29:27 +00:00
Print feature for DirectSound.
This commit is contained in:
parent
70f07196ea
commit
381498e945
@ -74,6 +74,12 @@ static const bool _pulse_supp = true;
|
|||||||
static const bool _pulse_supp = false;
|
static const bool _pulse_supp = false;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_DSOUND
|
||||||
|
static const bool _dsound_supp = true;
|
||||||
|
#else
|
||||||
|
static const bool _dsound_supp = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_XAUDIO
|
#ifdef HAVE_XAUDIO
|
||||||
static const bool _xaudio_supp = true;
|
static const bool _xaudio_supp = true;
|
||||||
#else
|
#else
|
||||||
|
1
ssnes.c
1
ssnes.c
@ -410,6 +410,7 @@ static void print_features(void)
|
|||||||
_PSUPP(rsound, "RSound", "audio driver");
|
_PSUPP(rsound, "RSound", "audio driver");
|
||||||
_PSUPP(roar, "RoarAudio", "audio driver");
|
_PSUPP(roar, "RoarAudio", "audio driver");
|
||||||
_PSUPP(pulse, "PulseAudio", "audio driver");
|
_PSUPP(pulse, "PulseAudio", "audio driver");
|
||||||
|
_PSUPP(dsound, "DirectSound", "audio driver");
|
||||||
_PSUPP(xaudio, "XAudio2", "audio driver");
|
_PSUPP(xaudio, "XAudio2", "audio driver");
|
||||||
_PSUPP(al, "OpenAL", "audio driver");
|
_PSUPP(al, "OpenAL", "audio driver");
|
||||||
_PSUPP(dylib, "External", "External filter and driver support");
|
_PSUPP(dylib, "External", "External filter and driver support");
|
||||||
|
Loading…
Reference in New Issue
Block a user