diff options
| -rw-r--r-- | graphics/animation.h | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/animation.h b/graphics/animation.h index c3ee5179ae..24b6f7e560 100644 --- a/graphics/animation.h +++ b/graphics/animation.h @@ -34,7 +34,11 @@ class AudioStream;  #ifdef USE_MPEG2  #if !defined(_MSC_VER) -#include <inttypes.h> +#ifndef PALMOS_MODE +#	include <inttypes.h> +#else +#	include <stdint.h> +#endif  #endif  extern "C" {  | 
