EMI: Remove last ifdef ENABLE_MONKEY4 checks

This commit is contained in:
Dries Harnie 2013-07-10 17:05:16 +02:00 committed by Dries Harnie
parent 08d749e730
commit 930ccad494
2 changed files with 0 additions and 4 deletions

View file

@ -259,7 +259,6 @@ bool BitmapData::loadTGA(Common::SeekableReadStream *data) {
}
bool BitmapData::loadTile(Common::SeekableReadStream *o) {
#ifdef ENABLE_MONKEY4
_x = 0;
_y = 0;
_format = 1;
@ -340,7 +339,6 @@ bool BitmapData::loadTile(Common::SeekableReadStream *o) {
delete[] data;
g_driver->createBitmap(this);
#endif // ENABLE_MONKEY4
return true;
}