[Scummvm-cvs-logs] SF.net SVN: scummvm:[54320] scummvm/trunk/engines/mohawk
mthreepwood at users.sourceforge.net
mthreepwood at users.sourceforge.net
Thu Nov 18 14:48:49 CET 2010
Revision: 54320
http://scummvm.svn.sourceforge.net/scummvm/?rev=54320&view=rev
Author: mthreepwood
Date: 2010-11-18 13:48:49 +0000 (Thu, 18 Nov 2010)
Log Message:
-----------
MOHAWK: Remove unused drawRLE() function
Modified Paths:
--------------
scummvm/trunk/engines/mohawk/bitmap.cpp
scummvm/trunk/engines/mohawk/bitmap.h
Modified: scummvm/trunk/engines/mohawk/bitmap.cpp
===================================================================
--- scummvm/trunk/engines/mohawk/bitmap.cpp 2010-11-18 13:31:12 UTC (rev 54319)
+++ scummvm/trunk/engines/mohawk/bitmap.cpp 2010-11-18 13:48:49 UTC (rev 54320)
@@ -134,8 +134,7 @@
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 @@
}
//////////////////////////////////////////
-// RLE Drawer
-//////////////////////////////////////////
-
-void MohawkBitmap::drawRLE() {
- warning("STUB: drawRLE()");
-}
-
-//////////////////////////////////////////
// Myst Bitmap Decoder
//////////////////////////////////////////
Modified: scummvm/trunk/engines/mohawk/bitmap.h
===================================================================
--- scummvm/trunk/engines/mohawk/bitmap.h 2010-11-18 13:31:12 UTC (rev 54319)
+++ scummvm/trunk/engines/mohawk/bitmap.h 2010-11-18 13:48:49 UTC (rev 54320)
@@ -95,7 +95,6 @@
// Draw Functions
void drawRaw();
void drawRLE8();
- void drawRLE();
protected:
BitmapHeader _header;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list