diff options
author | Travis Howell | 2003-10-16 06:06:35 +0000 |
---|---|---|
committer | Travis Howell | 2003-10-16 06:06:35 +0000 |
commit | 264c1da85e748000f1cdcc91c8f8038af607fdfa (patch) | |
tree | a71c20d08ad75e2808b9f7c8ea16880739be0dcb /scumm | |
parent | 8d656e8efbd66e2ff110ed30eff7fd9052680b1d (diff) | |
download | scummvm-rg350-264c1da85e748000f1cdcc91c8f8038af607fdfa.tar.gz scummvm-rg350-264c1da85e748000f1cdcc91c8f8038af607fdfa.tar.bz2 scummvm-rg350-264c1da85e748000f1cdcc91c8f8038af607fdfa.zip |
Update error message
Remove outdated fixme
svn-id: r10821
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v5.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 6271d3981c..6879f10f81 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -2734,8 +2734,6 @@ void ScummEngine_v5::decodeParseString() { _string[textSlot].overhead = false; break; case 6: /* left */ - // FIXME: not sure if GF_OLD_BUNDLE is the right thing to check... - // but Loom needs this, for sure. if (_version == 3) { // FIXME: this value seems to be some kind of override // for text spacing?!? @@ -2771,7 +2769,7 @@ void ScummEngine_v5::decodeParseString() { _sound->playCDTrack(1, 0, offset, delay); } } else { - warning("parseString: 8"); + warning("ScummEngine_v5::decodeParseString: Unhandled case 8"); } } break; |