From beb6ec056909b4fc7507154d97e42d0020206dee Mon Sep 17 00:00:00 2001 From: CrystalGamma Date: Mon, 12 Jul 2021 03:24:55 +0200 Subject: [PATCH] VideoCommon: fix generic build On x86/ARM Common/Assert.h is included by way of VideoCommon/VertexLoader{X64,ARM64}.h, on other platforms it is missing. --- Source/Core/VideoCommon/VertexLoaderBase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/VideoCommon/VertexLoaderBase.cpp b/Source/Core/VideoCommon/VertexLoaderBase.cpp index 481f8a8a2f..a9740329de 100644 --- a/Source/Core/VideoCommon/VertexLoaderBase.cpp +++ b/Source/Core/VideoCommon/VertexLoaderBase.cpp @@ -12,6 +12,7 @@ #include +#include "Common/Assert.h" #include "Common/CommonTypes.h" #include "Common/Logging/Log.h" #include "Common/MsgHandler.h"