summaryrefslogtreecommitdiff
path: root/libpcsxcore
diff options
context:
space:
mode:
authorSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-01-27 17:41:39 +0000
committerSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2014-01-27 17:41:39 +0000
commitdff057c107c51804881bf076d35cda6642fed517 (patch)
tree6f62e6e0fd1f608f7f85b35b712e24693559e871 /libpcsxcore
parenta9d8c7ad5e956e2fc845b56b3ee7850d5feb3d70 (diff)
downloadpcsxr-dff057c107c51804881bf076d35cda6642fed517.tar.gz
Fixed Win32 build (shm).
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88501 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore')
-rwxr-xr-xlibpcsxcore/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c
index 34da0ed5..cabd8d12 100755
--- a/libpcsxcore/misc.c
+++ b/libpcsxcore/misc.c
@@ -563,7 +563,7 @@ Cons of using SHM
- Possibly not the quickest way to allocate memory
*/
-#ifndef NO_RT_SHM
+#if !defined(NO_RT_SHM) && !defined(_WINDOWS) && !defined(_WIN32)
#include <sys/mman.h>
#include <sys/stat.h> /* For mode constants */
#include <fcntl.h> /* For O_* constants */