diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-19 02:27:20 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-20 01:01:10 +0100 |
| commit | ffe588cc240745f0a30595c604083d37e791c670 (patch) | |
| tree | 7e010773ac4232836b8975349a517d2e04774fd2 /Source/Core/VideoCommon/VideoBackendBase.cpp | |
| parent | 6847a0fc0c1699eb01fadd50cfaf76e4e34a02cb (diff) | |
Fix more header sorting issues in VideoCommon/ (now check-includes clean).
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoBackendBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index a9a6c1f77b..36e52b6654 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -2,8 +2,6 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "VideoCommon/VideoBackendBase.h" - // TODO: ugly #ifdef _WIN32 #include "VideoBackends/D3D/VideoBackend.h" @@ -11,6 +9,8 @@ #include "VideoBackends/OGL/VideoBackend.h" #include "VideoBackends/Software/VideoBackend.h" +#include "VideoCommon/VideoBackendBase.h" + std::vector<VideoBackend*> g_available_video_backends; VideoBackend* g_video_backend = NULL; static VideoBackend* s_default_backend = NULL; |
