summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-10-26 08:57:17 +0000
committernakeee <nakeee@gmail.com>2008-10-26 08:57:17 +0000
commit225fb8a4c188e87756f0f0b46736892ff9eed378 (patch)
tree4637505eda28494c4dcb5c77c144c011f2b5310c /Source
parent85145cb2ddfc736b62c1a4033f925dfec62e3664 (diff)
reverting BOOL type
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@969 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/PluginSpecs/CommonTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/PluginSpecs/CommonTypes.h b/Source/PluginSpecs/CommonTypes.h
index 236e9bcf26..b5f260ae0a 100644
--- a/Source/PluginSpecs/CommonTypes.h
+++ b/Source/PluginSpecs/CommonTypes.h
@@ -43,8 +43,8 @@ typedef signed __int64 s64;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
-#ifndef BOOL
-#define BOOL unsigned int
+#if !defined(OSX64)
+typedef unsigned int BOOL;
#endif
typedef unsigned long long u64;