mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-20 17:54:11 +00:00
Add in feature check printing for XAudio and Pulse.
This commit is contained in:
parent
3ce07891e4
commit
98e6613df0
@ -50,6 +50,18 @@ static const bool _jack_supp = true;
|
||||
static const bool _jack_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PULSE
|
||||
static const bool _pulse_supp = true;
|
||||
#else
|
||||
static const bool _pulse_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_XAUDIO
|
||||
static const bool _xaudio_supp = true;
|
||||
#else
|
||||
static const bool _xaudio_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_FILTER
|
||||
static const bool _filter_supp = true;
|
||||
#else
|
||||
|
2
ssnes.c
2
ssnes.c
@ -257,6 +257,8 @@ static void print_features(void)
|
||||
_PSUPP(jack, "Jack", "audio driver");
|
||||
_PSUPP(rsound, "RSound", "audio driver");
|
||||
_PSUPP(roar, "RoarAudio", "audio driver");
|
||||
_PSUPP(pulse, "PulseAudio", "audio driver");
|
||||
_PSUPP(xaudio, "XAudio2", "audio driver");
|
||||
_PSUPP(al, "OpenAL", "audio driver");
|
||||
_PSUPP(filter, "Filter", "CPU based video filters");
|
||||
_PSUPP(cg, "Cg", "Cg pixel shaders");
|
||||
|
Loading…
x
Reference in New Issue
Block a user