aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2010-11-18 13:48:49 +0000
committerMatthew Hoops2010-11-18 13:48:49 +0000
commitffc6ed643f5b659d2bd95c50fda020c716b8dd4b (patch)
tree5e4da25c49a7ef2c17efcc383df585506fa8d1e3 /engines
parent48416a7f038dba69a72aa9de2fef1dc1e9087405 (diff)
downloadscummvm-rg350-ffc6ed643f5b659d2bd95c50fda020c716b8dd4b.tar.gz
scummvm-rg350-ffc6ed643f5b659d2bd95c50fda020c716b8dd4b.tar.bz2
scummvm-rg350-ffc6ed643f5b659d2bd95c50fda020c716b8dd4b.zip
MOHAWK: Remove unused drawRLE() function
svn-id: r54320
Diffstat (limited to 'engines')
-rw-r--r--engines/mohawk/bitmap.cpp11
-rw-r--r--engines/mohawk/bitmap.h1
2 files changed, 1 insertions, 11 deletions
diff --git a/engines/mohawk/bitmap.cpp b/engines/mohawk/bitmap.cpp
index 29186c4b91..fb07559d18 100644
--- a/engines/mohawk/bitmap.cpp
+++ b/engines/mohawk/bitmap.cpp
@@ -134,8 +134,7 @@ void MohawkBitmap::unpackImage() {
static const CompressionInfo drawTable[] = {
{ kDrawRaw, "Raw", &MohawkBitmap::drawRaw },
- { kDrawRLE8, "RLE8", &MohawkBitmap::drawRLE8 },
- { kDrawRLE, "RLE", &MohawkBitmap::drawRLE }
+ { kDrawRLE8, "RLE8", &MohawkBitmap::drawRLE8 }
};
const char *MohawkBitmap::getDrawName() {
@@ -576,14 +575,6 @@ void MohawkBitmap::drawRLE8() {
}
//////////////////////////////////////////
-// RLE Drawer
-//////////////////////////////////////////
-
-void MohawkBitmap::drawRLE() {
- warning("STUB: drawRLE()");
-}
-
-//////////////////////////////////////////
// Myst Bitmap Decoder
//////////////////////////////////////////
diff --git a/engines/mohawk/bitmap.h b/engines/mohawk/bitmap.h
index 7e1ddcc573..63cfc523bf 100644
--- a/engines/mohawk/bitmap.h
+++ b/engines/mohawk/bitmap.h
@@ -95,7 +95,6 @@ public:
// Draw Functions
void drawRaw();
void drawRLE8();
- void drawRLE();
protected:
BitmapHeader _header;