diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-25 14:09:59 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-25 14:10:02 -0500 |
commit | a8a4f37628015aace4c4192df41c69bda9706a3f (patch) | |
tree | 094d7eb2e159a3cba740f86ac370e0577aaf4bad /src/video_core/macro | |
parent | 81d1a1133dad918cabc9f50948b6535b4a1e8893 (diff) |
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.cpp | 5 |
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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <cstring> #include <optional> + #include <boost/container_hash/hash.hpp> + #include "common/assert.h" -#include "common/logging/log.h" #include "common/settings.h" -#include "video_core/engines/maxwell_3d.h" #include "video_core/macro/macro.h" #include "video_core/macro/macro_hle.h" #include "video_core/macro/macro_interpreter.h" |