GRIM: Remove extra semicolons

This commit is contained in:
Joel Teichroeb 2012-05-05 22:59:51 -07:00
parent e63eda39bc
commit 115e3232b8
3 changed files with 3 additions and 3 deletions

View file

@ -271,7 +271,7 @@ bool BitmapData::loadTGA(Common::SeekableReadStream *data) {
data->seek(9, SEEK_CUR);
_width = data->readUint16LE();
_height = data->readUint16LE();;
_height = data->readUint16LE();
_format = 1;
_x = 0;
_y = 0;