From 252a3d16c26077e565203b25d41d46d2e2efed6d Mon Sep 17 00:00:00 2001 From: Christian Widmer Date: Fri, 16 Oct 2015 20:18:27 +0200 Subject: [PATCH] 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! --- Source/Core/VideoCommon/VertexLoaderBase.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 #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"