diff --git a/engines/mohawk/bitmap.cpp b/engines/mohawk/bitmap.cpp index 29186c4b919..fb07559d182 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() { @@ -575,14 +574,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 7e1ddcc5733..63cfc523bfb 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;