mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-20 17:54:11 +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;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SDL2
|
||||
static const bool _sdl2_supp = true;
|
||||
#else
|
||||
static const bool _sdl2_supp = false;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_THREADS
|
||||
static const bool _thread_supp = true;
|
||||
#else
|
||||
|
@ -823,6 +823,7 @@ static void print_features(void)
|
||||
puts("");
|
||||
puts("Features:");
|
||||
_PSUPP(sdl, "SDL", "SDL drivers");
|
||||
_PSUPP(sdl2, "SDL2", "SDL2 drivers");
|
||||
_PSUPP(x11, "X11", "X11 drivers");
|
||||
_PSUPP(wayland, "wayland", "Wayland drivers");
|
||||
_PSUPP(thread, "Threads", "Threading support");
|
||||
|
Loading…
x
Reference in New Issue
Block a user