aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2006-01-07 23:45:39 +0000
committerTravis Howell2006-01-07 23:45:39 +0000
commit05a469074c34825b387e396f93f6dd2acc59e4a5 (patch)
tree31c9f9cccb8e1f0e1c9d4fbc24d3d1668e86692d /scumm
parent065f8680e36b10b82656019c7e51607564b5c9ce (diff)
downloadscummvm-rg350-05a469074c34825b387e396f93f6dd2acc59e4a5.tar.gz
scummvm-rg350-05a469074c34825b387e396f93f6dd2acc59e4a5.tar.bz2
scummvm-rg350-05a469074c34825b387e396f93f6dd2acc59e4a5.zip
Remove function without purpose.
svn-id: r19939
Diffstat (limited to 'scumm')
-rw-r--r--scumm/smush/channel.h1
-rw-r--r--scumm/smush/imuse_channel.cpp5
2 files changed, 0 insertions, 6 deletions
diff --git a/scumm/smush/channel.h b/scumm/smush/channel.h
index 1f0d9e2d57..baca3dca98 100644
--- a/scumm/smush/channel.h
+++ b/scumm/smush/channel.h
@@ -116,7 +116,6 @@ protected:
bool processBuffer();
bool handleMap(Chunk &);
bool handleFormat(Chunk &);
- bool handleText(Chunk &);
bool handleRegion(Chunk &);
bool handleStop(Chunk &);
bool handleSubTags(int32 & offset);
diff --git a/scumm/smush/imuse_channel.cpp b/scumm/smush/imuse_channel.cpp
index 79f7c6ace3..02999aa13d 100644
--- a/scumm/smush/imuse_channel.cpp
+++ b/scumm/smush/imuse_channel.cpp
@@ -124,10 +124,6 @@ bool ImuseChannel::handleFormat(Chunk &src) {
return true;
}
-bool ImuseChannel::handleText(Chunk &src) {
- return true;
-}
-
bool ImuseChannel::handleRegion(Chunk &src) {
if (src.getSize() != 8)
error("invalid size for REGN Chunk");
@@ -148,7 +144,6 @@ bool ImuseChannel::handleMap(Chunk &map) {
handleFormat(*sub);
break;
case TYPE_TEXT:
- handleText(*sub);
break;
case TYPE_REGN:
handleRegion(*sub);