mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 08:43:10 +00:00
Add SDL2 to feature list
This commit is contained in:
parent
4c084b885d
commit
c36ddae9aa
@ -14,6 +14,12 @@ static const bool _sdl_supp = true;
|
|||||||
static const bool _sdl_supp = false;
|
static const bool _sdl_supp = false;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_SDL2
|
||||||
|
static const bool _sdl2_supp = true;
|
||||||
|
#else
|
||||||
|
static const bool _sdl2_supp = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_THREADS
|
#ifdef HAVE_THREADS
|
||||||
static const bool _thread_supp = true;
|
static const bool _thread_supp = true;
|
||||||
#else
|
#else
|
||||||
|
@ -823,6 +823,7 @@ static void print_features(void)
|
|||||||
puts("");
|
puts("");
|
||||||
puts("Features:");
|
puts("Features:");
|
||||||
_PSUPP(sdl, "SDL", "SDL drivers");
|
_PSUPP(sdl, "SDL", "SDL drivers");
|
||||||
|
_PSUPP(sdl2, "SDL2", "SDL2 drivers");
|
||||||
_PSUPP(x11, "X11", "X11 drivers");
|
_PSUPP(x11, "X11", "X11 drivers");
|
||||||
_PSUPP(wayland, "wayland", "Wayland drivers");
|
_PSUPP(wayland, "wayland", "Wayland drivers");
|
||||||
_PSUPP(thread, "Threads", "Threading support");
|
_PSUPP(thread, "Threads", "Threading support");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user