diff options
author | Max Horn | 2006-02-25 14:42:21 +0000 |
---|---|---|
committer | Max Horn | 2006-02-25 14:42:21 +0000 |
commit | 48fb7ea97980861126cee3310cb013007aa9831a (patch) | |
tree | 5845d7bdc84675faaa0f585f4c2984cef8009fd3 | |
parent | c89aa846f01f452a49bc3f463de14998aa3b634d (diff) | |
download | scummvm-rg350-48fb7ea97980861126cee3310cb013007aa9831a.tar.gz scummvm-rg350-48fb7ea97980861126cee3310cb013007aa9831a.tar.bz2 scummvm-rg350-48fb7ea97980861126cee3310cb013007aa9831a.zip |
Fix bug #1436178 (ALL: int8_t in graphics/animation in conflict with ISO99 C)
svn-id: r20877
-rw-r--r-- | graphics/animation.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/graphics/animation.h b/graphics/animation.h index ba5f96497c..5165ba7b0b 100644 --- a/graphics/animation.h +++ b/graphics/animation.h @@ -32,14 +32,8 @@ class AudioStream; // #define USE_MPEG2_0_3_1 #ifdef USE_MPEG2 -typedef int8 int8_t; -typedef int16 int16_t; -typedef int32 int32_t; - -typedef uint8 uint8_t; -typedef uint16 uint16_t; -typedef uint32 uint32_t; +#include <inttypes.h> extern "C" { #include <mpeg2dec/mpeg2.h> } |