Fix wrong return value in scope_dumper::TileInfo

pull/73/head
Jonathan G Rennison 6 years ago
parent ccf13467db
commit 8128d027c0

@ -120,5 +120,6 @@ const char *scope_dumper::StationInfo(const BaseStation *st)
const char *scope_dumper::TileInfo(TileIndex tile)
{
return DumpTileInfo(this->buffer, lastof(this->buffer), tile);
DumpTileInfo(this->buffer, lastof(this->buffer), tile);
return this->buffer;
}

Loading…
Cancel
Save