aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2002-12-29 19:50:08 +0000
committerMax Horn2002-12-29 19:50:08 +0000
commita7c62fbf43b68ac58174a11bb65ebcf3dff26767 (patch)
tree249501923f4f81f2d13497f9792f961272ca470d /scumm
parent36c2b8c58163e10c013e80bfd9bedbd3b2c59c30 (diff)
downloadscummvm-rg350-a7c62fbf43b68ac58174a11bb65ebcf3dff26767.tar.gz
scummvm-rg350-a7c62fbf43b68ac58174a11bb65ebcf3dff26767.tar.bz2
scummvm-rg350-a7c62fbf43b68ac58174a11bb65ebcf3dff26767.zip
fixed warning
svn-id: r6258
Diffstat (limited to 'scumm')
-rw-r--r--scumm/smush/codec47.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/codec47.cpp b/scumm/smush/codec47.cpp
index e7f0e5dec0..05fef0cef6 100644
--- a/scumm/smush/codec47.cpp
+++ b/scumm/smush/codec47.cpp
@@ -27,7 +27,7 @@
bool Codec47Decoder::initSize(const Point & p, const Rect & r) {
Decoder::initSize(p, r);
clean();
- int32 frame_size = getRect().width() * getRect().height();
+// int32 frame_size = getRect().width() * getRect().height();
return true;
}