Build the offscreen video driver by default.

This commit is contained in:
quyykk
2022-09-15 19:39:35 +02:00
committed by Sam Lantinga
parent 2970710b5d
commit 37effc7700
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2398,8 +2398,8 @@ CheckDummyVideo()
CheckOffscreenVideo()
{
AC_ARG_ENABLE(video-offscreen,
[AS_HELP_STRING([--enable-video-offscreen], [use offscreen video driver [default=no]])],
, enable_video_offscreen=no)
[AS_HELP_STRING([--enable-video-offscreen], [use offscreen video driver [default=yes]])],
, enable_video_offscreen=yes)
if test x$enable_video_offscreen = xyes; then
AC_DEFINE(SDL_VIDEO_DRIVER_OFFSCREEN, 1, [ ])
SOURCES="$SOURCES $srcdir/src/video/offscreen/*.c"