summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 19:54:27 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 19:54:27 +0200
commitb3e64813f5dcff5c29aea488a9feb2eef6265e50 (patch)
tree4f58e3ebb8e68911d0ea707aff3d4db8d382eac2
parentBuild fix for Debug configurations. (diff)
parentFix Linux GCC 4.9 build (complaining about undeclared memset) (diff)
downloadyuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.gz
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.bz2
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.lz
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.xz
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.tar.zst
yuzu-b3e64813f5dcff5c29aea488a9feb2eef6265e50.zip
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index e4b397303..21664aab6 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -4,9 +4,10 @@
#include <algorithm>
#include <condition_variable>
+#include <cstring>
+#include <fstream>
#include <list>
#include <map>
-#include <fstream>
#include <mutex>
#include <string>