mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
Log position tile where it differs from vehicle tile in DumpVehicleFlags
This commit is contained in:
parent
a47c4c781c
commit
98aa58a6b4
@ -3712,6 +3712,8 @@ char *Vehicle::DumpVehicleFlags(char *b, const char *last) const
|
||||
b += seprintf(b, last, ", [");
|
||||
b = DumpTileInfo(b, last, this->tile);
|
||||
b += seprintf(b, last, "]");
|
||||
TileIndex vtile = TileVirtXY(this->x_pos, this->y_pos);
|
||||
if (this->tile != vtile) b += seprintf(b, last, ", VirtXYTile: %X (%u x %u)", vtile, TileX(vtile), TileY(vtile));
|
||||
if (this->cargo_payment) b += seprintf(b, last, ", CP");
|
||||
return b;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user