aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-07-08 16:17:41 +0000
committerMax Horn2003-07-08 16:17:41 +0000
commit8dd90916e04b77bf34108ba97897412d24cd192f (patch)
treef12c10545cbc96798c96b82b5b4167688e94ae7b /scumm
parent588279dd4f6416f96512008b0e510eecbaae94c2 (diff)
downloadscummvm-rg350-8dd90916e04b77bf34108ba97897412d24cd192f.tar.gz
scummvm-rg350-8dd90916e04b77bf34108ba97897412d24cd192f.tar.bz2
scummvm-rg350-8dd90916e04b77bf34108ba97897412d24cd192f.zip
ok, thanks erik for pointing out to me where this occurs :-)
svn-id: r8857
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index 036e587df6..5258ca8fb7 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -89,11 +89,11 @@ byte CostumeRenderer::mainRoutine(int xmoveCur, int ymoveCur) {
switch (_loaded._format) {
case 0x60:
case 0x61:
+ // This format is used e.g. in the Sam&Max intro
ex1 = _srcptr[0];
ex2 = _srcptr[1];
_srcptr += 2;
if (ex1 != 0xFF || ex2 != 0xFF) {
-printf("Funky! Tell Fingolfin where you saw this\n");
ex1 = READ_LE_UINT16(_loaded._frameOffsets + ex1 * 2);
_srcptr = _loaded._baseptr + READ_LE_UINT16(_loaded._baseptr + ex1 + ex2 * 2) + 14;
}