From 6b0814f4adba72235b1e47fa3cd41ae6ab22095d Mon Sep 17 00:00:00 2001 From: Ihar Hubchyk Date: Thu, 9 Jan 2025 22:26:52 +0800 Subject: [PATCH] Code style fix --- src/fheroes2/maps/maps_tiles.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fheroes2/maps/maps_tiles.cpp b/src/fheroes2/maps/maps_tiles.cpp index 8d5fe747e4..05d488cf54 100644 --- a/src/fheroes2/maps/maps_tiles.cpp +++ b/src/fheroes2/maps/maps_tiles.cpp @@ -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( objectType ) << " (" << MP2::StringObject( objectType ) << ")" << std::endl << "region Id : " << _region << std::endl << "ground type : " << Ground::String( GetGround() ) << " (isRoad: " << _isTileMarkedAsRoad << ")" << std::endl