# HG changeset patch # User Holmes Futrell # Date 1214176382 0 # Node ID ce3ddf8dd6d2d5bd80509a887a2341519a5e22fc # Parent 0f62c4ae1cd586a50793c19afe435f4889633dee disabled compile time assertion ... no 64 bit primitive types available on iPhone (it appears) diff -r 0f62c4ae1cd5 -r ce3ddf8dd6d2 include/SDL_stdinc.h --- a/include/SDL_stdinc.h Sun Jun 22 23:12:02 2008 +0000 +++ b/include/SDL_stdinc.h Sun Jun 22 23:13:02 2008 +0000 @@ -147,8 +147,10 @@ SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); -SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); -SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); + +// SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); +// SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); + #endif /* DOXYGEN_SHOULD_IGNORE_THIS */ /* Check to make sure enums are the size of ints, for structure packing. @@ -389,6 +391,7 @@ } \ } while(0) #endif + #ifndef SDL_revcpy extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src, size_t len);