disabled compile time assertion ... no 64 bit primitive types available on iPhone (it appears)
1.1 --- a/include/SDL_stdinc.h Sun Jun 22 23:12:02 2008 +0000
1.2 +++ b/include/SDL_stdinc.h Sun Jun 22 23:13:02 2008 +0000
1.3 @@ -147,8 +147,10 @@
1.4 SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
1.5 SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
1.6 SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
1.7 -SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
1.8 -SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
1.9 +
1.10 +// SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
1.11 +// SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
1.12 +
1.13 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */
1.14
1.15 /* Check to make sure enums are the size of ints, for structure packing.
1.16 @@ -389,6 +391,7 @@
1.17 } \
1.18 } while(0)
1.19 #endif
1.20 +
1.21 #ifndef SDL_revcpy
1.22 extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
1.23 size_t len);