summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderBase.cpp
diff options
context:
space:
mode:
authorCrystalGamma <dolphin@crystalgamma.de>2021-07-12 03:24:55 +0200
committerCrystalGamma <dolphin@crystalgamma.de>2021-07-12 04:30:43 +0200
commitbeb6ec056909b4fc7507154d97e42d0020206dee (patch)
tree056af367fb07f4f42147b2d0aea38bdfe49b95be /Source/Core/VideoCommon/VertexLoaderBase.cpp
parent93626764d475688877bad1140fd1d6b766d4aa5b (diff)
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.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderBase.cpp1
1 files changed, 1 insertions, 0 deletions
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 <fmt/format.h>
+#include "Common/Assert.h"
#include "Common/CommonTypes.h"
#include "Common/Logging/Log.h"
#include "Common/MsgHandler.h"