aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorMax Horn2004-01-30 20:47:21 +0000
committerMax Horn2004-01-30 20:47:21 +0000
commit4dab40f1233eba825aa9c5834b135403f922c8c4 (patch)
treed6830ed5ef189662ee43ddfa81ce3edcbf08f9e4 /sword2
parent8bd19dab0b5da51f28e80f8550c50527e0801252 (diff)
downloadscummvm-rg350-4dab40f1233eba825aa9c5834b135403f922c8c4.tar.gz
scummvm-rg350-4dab40f1233eba825aa9c5834b135403f922c8c4.tar.bz2
scummvm-rg350-4dab40f1233eba825aa9c5834b135403f922c8c4.zip
fix whitespaces (we should eventually try to remove this code duplication again, folks. maybe add a 'video' global module or so...)
svn-id: r12676
Diffstat (limited to 'sword2')
-rw-r--r--sword2/driver/animation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sword2/driver/animation.h b/sword2/driver/animation.h
index 3d53e7eb25..4841a26d3f 100644
--- a/sword2/driver/animation.h
+++ b/sword2/driver/animation.h
@@ -26,13 +26,13 @@
// #define USE_MPEG2_0_3_1
#ifdef _MSC_VER
-typedef signed char int8_t;
+typedef int8 int8_t;
typedef signed short int16_t;
-typedef signed int int32_t;
+typedef int32 int32_t;
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
+typedef uint8 uint8_t;
+typedef uint16 uint16_t;
+typedef uint32 uint32_t;
#else
#include <inttypes.h>
#endif
@@ -104,9 +104,9 @@ private:
byte pal[4 * 256];
} palettes[50];
#else
- static NewGuiColor lookup2[BITDEPTH * BITDEPTH * 256];
- NewGuiColor *overlay;
- static bool lookupInit;
+ static NewGuiColor lookup2[BITDEPTH * BITDEPTH * 256];
+ NewGuiColor *overlay;
+ static bool lookupInit;
#endif