From a10ad4c232bfe48151a1bb835a8f14df850d7abf Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 14 May 2004 05:37:05 +0000 Subject: [PATCH] work around vc6 brain damage; it can't figure out that "short" == "__int16", etc --- stepmania/src/archutils/Win32/arch_setup.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stepmania/src/archutils/Win32/arch_setup.h b/stepmania/src/archutils/Win32/arch_setup.h index 008d9cc663..fa4757d711 100644 --- a/stepmania/src/archutils/Win32/arch_setup.h +++ b/stepmania/src/archutils/Win32/arch_setup.h @@ -32,12 +32,12 @@ void my_usleep( unsigned long usec ); #define usleep my_usleep /* Missing stdint types: */ -typedef __int8 int8_t; -typedef unsigned __int8 uint8_t; -typedef __int16 int16_t; -typedef unsigned __int16 uint16_t; -typedef __int32 int32_t; -typedef unsigned __int32 uint32_t; +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef signed short int16_t; +typedef unsigned short uint16_t; +typedef int int32_t; +typedef unsigned int uint32_t; typedef __int64 int64_t; typedef unsigned __int64 uint64_t; static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }