aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-07-24 09:38:42 +0000
committerPaweł Kołodziejski2002-07-24 09:38:42 +0000
commit76679bc3e9fc2ee0d414d0b1bc620b8f5bac56c0 (patch)
tree89d3975a099e6f099d0180f8bc891df1afff6e85
parentd6e1332f49535f743b747cbdee15739162b27323 (diff)
downloadscummvm-rg350-76679bc3e9fc2ee0d414d0b1bc620b8f5bac56c0.tar.gz
scummvm-rg350-76679bc3e9fc2ee0d414d0b1bc620b8f5bac56c0.tar.bz2
scummvm-rg350-76679bc3e9fc2ee0d414d0b1bc620b8f5bac56c0.zip
fixed warnings signed/unsigned
svn-id: r4624
-rw-r--r--sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index d8bcf07ff7..d135aa2a2c 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -791,7 +791,7 @@ void Scumm::decompressBundleSound(int index) {
COMP_table table[50];
unsigned char *CompInput, *CompOutput, *CompFinal, *Final;
int outputSize, finalSize;
- uint32 offset1, offset2, offset3, length, k, c, s, j, r, t;
+ int32 offset1, offset2, offset3, length, k, c, s, j, r, t;
byte * src, * t_table;
byte t_tmp1, t_tmp2;