diff options
| author | Christian Widmer <shadow@umbrox.de> | 2015-10-16 20:18:27 +0200 |
|---|---|---|
| committer | Christian Widmer <shadow@umbrox.de> | 2015-10-16 20:18:27 +0200 |
| commit | 252a3d16c26077e565203b25d41d46d2e2efed6d (patch) | |
| tree | c31bb19053eb6ac446a48ba01bbb1700c9c8e238 /Source/Core/VideoCommon/VertexLoaderBase.cpp | |
| parent | 05e339a605be5f5ccd0f710af774fa08eadd65a2 (diff) | |
VideoCommon: Add includes for generic build
On x86_64 and arm64 builds Common/MsgHandler.h and Common/Logging/Log.h are
indirectly included through the corresponding VertexLoaders, Emitters
and lastly Assert.h. Because the generic build does not build a vertex
loader JIT it does not include those and fails at compile time.
Thanks to HdkR and mibofra!
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderBase.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderBase.cpp b/Source/Core/VideoCommon/VertexLoaderBase.cpp index a253d62894..81e42da4e3 100644 --- a/Source/Core/VideoCommon/VertexLoaderBase.cpp +++ b/Source/Core/VideoCommon/VertexLoaderBase.cpp @@ -6,7 +6,9 @@ #include <vector> #include "Common/Common.h" +#include "Common/MsgHandler.h" #include "Common/StringUtil.h" +#include "Common/Logging/Log.h" #include "VideoCommon/VertexLoader.h" #include "VideoCommon/VertexLoaderBase.h" |
