diff options
| author | Shawn Hoffman <godisgovernment@gmail.com> | 2010-05-02 21:12:51 +0000 |
|---|---|---|
| committer | Shawn Hoffman <godisgovernment@gmail.com> | 2010-05-02 21:12:51 +0000 |
| commit | 6c407b5fa0121968c83992a2c8134692a70b82ed (patch) | |
| tree | fd44692848910f1575b32ba9db2f0a625246866c /Source/Core/Common | |
| parent | 66ffa3b04590ced0dff0fde1bdc12d572e5de4bd (diff) | |
OS X buildfix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5429 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common')
| -rw-r--r-- | Source/Core/Common/Src/CommonTypes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/Common/Src/CommonTypes.h b/Source/Core/Common/Src/CommonTypes.h index 3f1f98e3d6..2482a8822d 100644 --- a/Source/Core/Common/Src/CommonTypes.h +++ b/Source/Core/Common/Src/CommonTypes.h @@ -46,10 +46,10 @@ typedef unsigned short u16; typedef unsigned int u32; typedef unsigned long long u64; -typedef char s8; -typedef short s16; -typedef int s32; -typedef long long s64; +typedef signed char s8; +typedef signed short s16; +typedef signed int s32; +typedef signed long long s64; #endif // For using windows lock code |
