diff options
| author | tmator <tmator@gmail.com> | 2008-10-25 17:48:54 +0000 |
|---|---|---|
| committer | tmator <tmator@gmail.com> | 2008-10-25 17:48:54 +0000 |
| commit | a56cb7c0bba37a844e4e34c0e3f4bb3e005d17bc (patch) | |
| tree | 9233c29813cde4136cae21a1d44b99fbfe444cd5 | |
| parent | 8f3aa9e67b4b74839c547d5a765c8221848c3e19 (diff) | |
BOOL is defined on apple 64
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@964 8ced0084-cf51-0410-be5f-012b33b47a6e
| -rw-r--r-- | Source/PluginSpecs/CommonTypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/PluginSpecs/CommonTypes.h b/Source/PluginSpecs/CommonTypes.h index 8bd75dc1ea..b5f260ae0a 100644 --- a/Source/PluginSpecs/CommonTypes.h +++ b/Source/PluginSpecs/CommonTypes.h @@ -43,7 +43,9 @@ typedef signed __int64 s64; typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
+#if !defined(OSX64)
typedef unsigned int BOOL;
+#endif
typedef unsigned long long u64;
typedef char s8;
|
