From 4468671cef1fe0948465b28ebfb5e78ebda26cd8 Mon Sep 17 00:00:00 2001
From: twinaphex <libretro@gmail.com>
Date: Tue, 9 Oct 2018 01:15:47 +0200
Subject: [PATCH] Go back to this version by radius - the other one didn't work

---
 configuration.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/configuration.c b/configuration.c
index 654f193923..4759929212 100644
--- a/configuration.c
+++ b/configuration.c
@@ -2352,8 +2352,17 @@ static bool check_menu_driver_compatibility(void)
          string_is_equal(menu_driver, "null"))
       return true;
 
-   if (menu_display_driver_exists(video_driver))
-      return true;
+   /* TODO/FIXME - maintenance hazard */
+   if (string_is_equal(video_driver, "d3d9")   ||
+         string_is_equal(video_driver, "d3d10")  ||
+         string_is_equal(video_driver, "d3d11")  ||
+         string_is_equal(video_driver, "d3d12")  ||
+         string_is_equal(video_driver, "gl")     ||
+         string_is_equal(video_driver, "gx2")    ||
+         string_is_equal(video_driver, "vulkan") ||
+         string_is_equal(video_driver, "metal")  ||
+         string_is_equal(video_driver, "vita"))
+      return true;   
 
    return false;
 }