diff options
author | anotherguest | 2013-11-26 12:17:59 +0100 |
---|---|---|
committer | anotherguest | 2013-11-26 12:17:59 +0100 |
commit | 44c24f8dc81d3bdc5838642ecc88067f6e60b6fd (patch) | |
tree | b1cf5df83dd8e8a5dc00a3f423db2e6ce175f93a | |
parent | 44947f5bdb45095793f1e994385f051d534d53ee (diff) | |
download | scummvm-rg350-44c24f8dc81d3bdc5838642ecc88067f6e60b6fd.tar.gz scummvm-rg350-44c24f8dc81d3bdc5838642ecc88067f6e60b6fd.tar.bz2 scummvm-rg350-44c24f8dc81d3bdc5838642ecc88067f6e60b6fd.zip |
SYMBIAN OS:Use defaults for data types also for Symbian OS!
-rw-r--r-- | video/codecs/mpeg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/mpeg.h b/video/codecs/mpeg.h index 0082844537..3560f4b8b7 100644 --- a/video/codecs/mpeg.h +++ b/video/codecs/mpeg.h @@ -37,7 +37,7 @@ typedef signed short int16_t; typedef unsigned char uint8_t; typedef unsigned short uint16_t; -#elif defined(_MSC_VER) +#elif defined(_MSC_VER) || defined (__SYMBIAN32__) typedef signed char int8_t; typedef signed short int16_t; typedef unsigned char uint8_t; |