aboutsummaryrefslogtreecommitdiff
path: root/insane.cpp
diff options
context:
space:
mode:
authorJames Brown2002-05-13 08:25:58 +0000
committerJames Brown2002-05-13 08:25:58 +0000
commit4466f1555b6158ec7f8e35f46def08c744b0ae1f (patch)
tree5c18e675712290fab11ac2993eae2ee9ad313119 /insane.cpp
parent2a53e8f661c06b79a9a2d7443f4fb1e6be71cf13 (diff)
downloadscummvm-rg350-4466f1555b6158ec7f8e35f46def08c744b0ae1f.tar.gz
scummvm-rg350-4466f1555b6158ec7f8e35f46def08c744b0ae1f.tar.bz2
scummvm-rg350-4466f1555b6158ec7f8e35f46def08c744b0ae1f.zip
The DIG SFX support - thanks to aquadran
svn-id: r4303
Diffstat (limited to 'insane.cpp')
-rw-r--r--insane.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/insane.cpp b/insane.cpp
index ee74e1779d..c6b42555e9 100644
--- a/insane.cpp
+++ b/insane.cpp
@@ -257,8 +257,10 @@ void SmushPlayer::parseIACT() {
break;
default :
- error("trk %d: unknown tag inside iMUS %08x",
- trk, _imusSubTag[idx]);
+ error("trk %d: unknown tag inside iMUS %08x [%c%c%c%c]",
+ trk, _imusSubTag[idx], _imusSubTag[idx] >> 24,
+ _imusSubTag[idx] >> 16, _imusSubTag[idx] >> 8,
+ _imusSubTag[idx]);
}
_imusSubSize[idx] -= sublen;