(svn r23654) -Fix [FS#4904]: missing this-> (adf88)

This commit is contained in:
rubidium 2011-12-21 17:15:56 +00:00
parent 8456d5de69
commit 9b192efc58
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public:
if (this->att->ti.x == -0x80) {
this->tile = INVALID_TILE;
} else {
this->tile = base_tile + ToTileIndexDiff(att->ti);
this->tile = this->base_tile + ToTileIndexDiff(this->att->ti);
}
return *this;
}