Skip to content

Commit

Permalink
Add SDL2 to feature list
Browse files Browse the repository at this point in the history
  • Loading branch information
heuripedes committed Aug 10, 2014
1 parent 4c084b8 commit c36ddae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config.features.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions retroarch.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit c36ddae

Please sign in to comment.