summaryrefslogtreecommitdiff
path: root/src/video_core/macro
diff options
context:
space:
mode:
authorGravatar Lioncash2022-01-25 14:09:59 -0500
committerGravatar Lioncash2022-01-25 14:10:02 -0500
commita8a4f37628015aace4c4192df41c69bda9706a3f (patch)
tree094d7eb2e159a3cba740f86ac370e0577aaf4bad /src/video_core/macro
parentvideo_core/macro_interpreter: Move impl class to the cpp file (diff)
downloadyuzu-a8a4f37628015aace4c4192df41c69bda9706a3f.tar.gz
yuzu-a8a4f37628015aace4c4192df41c69bda9706a3f.tar.xz
yuzu-a8a4f37628015aace4c4192df41c69bda9706a3f.zip
video_core/macro: Add missing <cstring> header
Necessary since memcpy is used.
Diffstat (limited to 'src/video_core/macro')
-rw-r--r--src/video_core/macro/macro.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/macro/macro.cpp b/src/video_core/macro/macro.cpp
index 0ae78a9e5..0aeda4ce8 100644
--- a/src/video_core/macro/macro.cpp
+++ b/src/video_core/macro/macro.cpp
@@ -2,12 +2,13 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <cstring>
5#include <optional> 6#include <optional>
7
6#include <boost/container_hash/hash.hpp> 8#include <boost/container_hash/hash.hpp>
9
7#include "common/assert.h" 10#include "common/assert.h"
8#include "common/logging/log.h"
9#include "common/settings.h" 11#include "common/settings.h"
10#include "video_core/engines/maxwell_3d.h"
11#include "video_core/macro/macro.h" 12#include "video_core/macro/macro.h"
12#include "video_core/macro/macro_hle.h" 13#include "video_core/macro/macro_hle.h"
13#include "video_core/macro/macro_interpreter.h" 14#include "video_core/macro/macro_interpreter.h"