aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;