From d7572399cc0f6997d7a20ed607c091d9926e9f88 Mon Sep 17 00:00:00 2001 From: Rinnegatamante Date: Wed, 13 Nov 2019 09:05:57 +0100 Subject: [PATCH] [VITA] Make (for now) vita2d renderer the default one. --- retroarch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retroarch.c b/retroarch.c index 8002a8db1b..9aea90d7d3 100644 --- a/retroarch.c +++ b/retroarch.c @@ -340,6 +340,9 @@ static const audio_driver_t *audio_drivers[] = { static const video_driver_t *video_drivers[] = { +#ifdef HAVE_VITA2D + &video_vita2d, +#endif #ifdef HAVE_OPENGL &video_gl2, #endif @@ -373,9 +376,6 @@ static const video_driver_t *video_drivers[] = { #if defined(HAVE_D3D8) &video_d3d8, #endif -#ifdef HAVE_VITA2D - &video_vita2d, -#endif #ifdef PSP &video_psp1, #endif