[Scummvm-cvs-logs] SF.net SVN: scummvm: [20877] scummvm/trunk/graphics/animation.h
fingolfin at users.sourceforge.net
fingolfin at users.sourceforge.net
Sat Feb 25 06:43:03 CET 2006
Revision: 20877
Author: fingolfin
Date: 2006-02-25 06:42:21 -0800 (Sat, 25 Feb 2006)
ViewCVS: http://svn.sourceforge.net/scummvm?rev=20877&view=rev
Log Message:
-----------
Fix bug #1436178 (ALL: int8_t in graphics/animation in conflict with ISO99 C)
Modified Paths:
--------------
scummvm/trunk/graphics/animation.h
Modified: scummvm/trunk/graphics/animation.h
===================================================================
--- scummvm/trunk/graphics/animation.h 2006-02-25 14:15:19 UTC (rev 20876)
+++ scummvm/trunk/graphics/animation.h 2006-02-25 14:42:21 UTC (rev 20877)
@@ -32,14 +32,8 @@
// #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>
}
More information about the Scummvm-git-logs
mailing list