aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-06-19 11:29:15 +0000
committerMax Horn2003-06-19 11:29:15 +0000
commitab7b941999e3ddd99f6bc904e6badcb076807db6 (patch)
treee09b00097b8069041e593c9f3adb30a10247faa4
parent08beeb942b8c5b5ee5e2354893ebde2412557e10 (diff)
downloadscummvm-rg350-ab7b941999e3ddd99f6bc904e6badcb076807db6.tar.gz
scummvm-rg350-ab7b941999e3ddd99f6bc904e6badcb076807db6.tar.bz2
scummvm-rg350-ab7b941999e3ddd99f6bc904e6badcb076807db6.zip
fixed warning (but the code is definitely incorrect ;-)
svn-id: r8553
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index deedcd027e..46f571e705 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -273,7 +273,7 @@ void CostumeRenderer::procC64() {
const byte *src;
byte *dst;
byte color;
- byte len;
+ byte len = 0; // FIXME - err, len is never set to anything...
int y = 0;
src = _srcptr;