ALL: disabled compiler warnings

This commit is contained in:
Paweł Kołodziejski 2012-04-12 02:54:10 +02:00
parent 07ee34ae3f
commit 640889b805
7 changed files with 33 additions and 38 deletions

View file

@ -327,10 +327,9 @@ bool BitmapData::loadTile(Common::SeekableReadStream *o) {
o->seek(0, SEEK_SET);
//warning("Loading TILE: %s",fname.c_str());
uint32 id, bmoffset;
id = o->readUint32LE();
/*uint32 id = */o->readUint32LE();
// Should check that we actually HAVE a TIL
bmoffset = o->readUint32LE();
uint32 bmoffset = o->readUint32LE();
o->seek(bmoffset + 16);
int numSubImages = o->readUint32LE();
if (numSubImages < 5)