From ffc6ed643f5b659d2bd95c50fda020c716b8dd4b Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 18 Nov 2010 13:48:49 +0000 Subject: MOHAWK: Remove unused drawRLE() function svn-id: r54320 --- engines/mohawk/bitmap.cpp | 11 +---------- engines/mohawk/bitmap.h | 1 - 2 files changed, 1 insertion(+), 11 deletions(-) (limited to 'engines') 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() { @@ -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 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; -- cgit v1.2.3