From c9e333b4d5c88d57300c151fa5f226557ecb41cc Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sun, 26 Oct 2008 10:51:00 +0000 Subject: [PATCH] Fix Linux compilation as of r237 git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@239 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/Misc.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcsx2/Misc.h b/pcsx2/Misc.h index 7660806d21..7d797b4228 100644 --- a/pcsx2/Misc.h +++ b/pcsx2/Misc.h @@ -23,6 +23,10 @@ #include #include +#ifndef _WIN32 +#include +#endif + // compile-time assert #ifndef C_ASSERT #define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]