Skip to content

Commit

Permalink
Code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ihhub committed Jan 9, 2025
1 parent 16ba31f commit 6b0814f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fheroes2/maps/maps_tiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,8 @@ std::string Maps::Tile::String() const
const MP2::MapObjectType objectType = getMainObjectType();

os << "******* Tile info *******" << std::endl
<< "index : " << _index << ", " << "point: (" << GetCenter().x << ", " << GetCenter().y << ")" << std::endl
<< "index : " << _index << ", "
<< "point: (" << GetCenter().x << ", " << GetCenter().y << ")" << std::endl
<< "MP2 object type : " << static_cast<int>( objectType ) << " (" << MP2::StringObject( objectType ) << ")" << std::endl
<< "region Id : " << _region << std::endl
<< "ground type : " << Ground::String( GetGround() ) << " (isRoad: " << _isTileMarkedAsRoad << ")" << std::endl
Expand Down

0 comments on commit 6b0814f

Please sign in to comment.