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!
This commit is contained in:
Christian Widmer 2015-10-16 20:18:27 +02:00
parent 05e339a605
commit 252a3d16c2
1 changed files with 2 additions and 0 deletions

View File

@ -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"