diff options
| author | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-10-25 22:43:36 +0000 |
|---|---|---|
| committer | XTra.KrazzY <XTra.KrazzY@gmail.com> | 2008-10-25 22:43:36 +0000 |
| commit | e02aeebf6695c421d5d1395a41b27885d20207fc (patch) | |
| tree | 2346a829dd22b83ed8a30242c6039f6a5e76a29d /Source | |
| parent | a071c2d4c4fa3c74e6bd27551ba87fb736d19fee (diff) | |
The original way of defining a BOOL.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@966 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/PluginSpecs/CommonTypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/PluginSpecs/CommonTypes.h b/Source/PluginSpecs/CommonTypes.h index b5f260ae0a..236e9bcf26 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;
-#if !defined(OSX64)
-typedef unsigned int BOOL;
+#ifndef BOOL
+#define BOOL unsigned int
#endif
typedef unsigned long long u64;
|
