aboutsummaryrefslogtreecommitdiff
path: root/sword1
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-01-18 07:21:10 +0000
committerPaweł Kołodziejski2004-01-18 07:21:10 +0000
commitef9732f1f5343f6eb2b95ee0872e10252d9da97f (patch)
tree74ec08dcf1d4e160cf644db83ecc7e23716898c5 /sword1
parent8a6641826b0f464509159cbdc2a3e19b1d5d20f5 (diff)
downloadscummvm-rg350-ef9732f1f5343f6eb2b95ee0872e10252d9da97f.tar.gz
scummvm-rg350-ef9732f1f5343f6eb2b95ee0872e10252d9da97f.tar.bz2
scummvm-rg350-ef9732f1f5343f6eb2b95ee0872e10252d9da97f.zip
fix compilation
svn-id: r12467
Diffstat (limited to 'sword1')
-rw-r--r--sword1/animation.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/sword1/animation.h b/sword1/animation.h
index bfbbd11e13..4907c5b2f0 100644
--- a/sword1/animation.h
+++ b/sword1/animation.h
@@ -25,7 +25,15 @@
// Uncomment this if you are using libmpeg2 0.3.1.
// #define USE_MPEG2_0_3_1
-#ifndef _MSC_VER
+#ifdef _MSC_VER
+typedef signed char int8_t;
+typedef signed short int16_t;
+typedef signed int int32_t;
+
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+#else
#include <inttypes.h>
#endif