1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 17:09:10 +00:00

(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

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;
}