From 077a9a7bebc0fb7b8e3fe524753aa5146d816ff8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 3 Sep 2016 07:10:55 +0200 Subject: [PATCH] Add more SDL source files to griffin --- griffin/griffin.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/griffin/griffin.c b/griffin/griffin.c index f81237b841..d3bf911c80 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -155,6 +155,7 @@ VIDEO CONTEXT #include "../gfx/drivers_context/cgl_ctx.c" #endif + #if defined(HAVE_VIVANTE_FBDEV) #include "../gfx/drivers_context/vivante_fbdev_ctx.c" #endif @@ -275,6 +276,10 @@ VIDEO DRIVER #endif #endif +#ifdef HAVE_SDL2 +#include "../gfx/drivers/sdl2_gfx.c" +#endif + #ifdef HAVE_VG #include "../gfx/drivers/vg.c" #endif @@ -598,6 +603,10 @@ AUDIO #include "../audio/drivers/ctr_dsp_audio.c" #endif +#if defined(HAVE_SDL2) +#include "../audio/drivers/sdl_audio.c" +#endif + #ifdef HAVE_DSOUND #include "../audio/drivers/dsound.c" #endif