From 91b40523bd1a1fe29098d6ae47303dfb5bee7049 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 30 Nov 2015 06:57:58 +0100 Subject: [PATCH] Weird regression fixed --- config.def.h | 1 - configuration.h | 1 - driver.h | 1 + gfx/video_context_driver.h | 2 +- 4 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index 81efc563d8..a72a4fdc1e 100644 --- a/config.def.h +++ b/config.def.h @@ -20,7 +20,6 @@ #include #include "libretro.h" #include "driver.h" -#include "gfx/video_driver.h" #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/configuration.h b/configuration.h index 5b42d8a4bb..52171001da 100644 --- a/configuration.h +++ b/configuration.h @@ -20,7 +20,6 @@ #include #include #include "driver.h" -#include "gfx/video_driver.h" #ifndef MAX_USERS #define MAX_USERS 16 diff --git a/driver.h b/driver.h index 1026c73a26..1fa8fcc64b 100644 --- a/driver.h +++ b/driver.h @@ -29,6 +29,7 @@ #include "frontend/frontend_driver.h" #include "ui/ui_companion_driver.h" +#include "gfx/video_driver.h" #include "gfx/font_renderer_driver.h" #include "camera/camera_driver.h" diff --git a/gfx/video_context_driver.h b/gfx/video_context_driver.h index 0c24c0b662..c457935302 100644 --- a/gfx/video_context_driver.h +++ b/gfx/video_context_driver.h @@ -19,7 +19,7 @@ #include -#include "video_driver.h" +#include "../driver.h" #ifdef HAVE_CONFIG_H #include "../config.h"