summaryrefslogtreecommitdiff
path: root/games-emulation/pcsx2/files/pcsx2-1.7.5817-missing-headers.patch
blob: d8d341a7dea17dc09cb92e8f2f5e24083894fb06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ThreadedFileReader.cpp:37:4: error: use of undeclared identifier 'memcpy'
defs.h:78:14: error: no member named 'clamp' in namespace 'std'
--- a/pcsx2/CDVD/ThreadedFileReader.h
+++ b/pcsx2/CDVD/ThreadedFileReader.h
@@ -10,4 +10,5 @@
 #include <atomic>
 #include <condition_variable>
+#include <cstring>
 
 class Error;
--- a/pcsx2/SPU2/defs.h
+++ b/pcsx2/SPU2/defs.h
@@ -6,4 +6,5 @@
 #include "GS/MultiISA.h"
 
+#include <algorithm>
 #include <array>