summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapmark.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-28 11:01:23 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-03-28 11:01:23 +0200
commitd97e13bad62041beab052c65fad9e1049230b430 (patch)
tree7903bfe16b236155082267f8e5c8d051ffc5a7f9 /crawl-ref/source/mapmark.cc
parentc373b29efe99185bc89e6307e5c455107044a387 (diff)
downloadcrawl-ref-d97e13bad62041beab052c65fad9e1049230b430.tar.gz
crawl-ref-d97e13bad62041beab052c65fad9e1049230b430.zip
Wrap some egregiously long lines in the source.
While adhering religiously to the 80 column limit tends to be often pointless, 173 column long lines are way, way over the edge from the other side.
Diffstat (limited to 'crawl-ref/source/mapmark.cc')
-rw-r--r--crawl-ref/source/mapmark.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/mapmark.cc b/crawl-ref/source/mapmark.cc
index 4c48c95621..aa8cf1aa21 100644
--- a/crawl-ref/source/mapmark.cc
+++ b/crawl-ref/source/mapmark.cc
@@ -651,13 +651,15 @@ map_marker *map_malign_gateway_marker::read(reader &in, map_marker_type)
map_marker *map_malign_gateway_marker::clone() const
{
- map_malign_gateway_marker *mark = new map_malign_gateway_marker(pos, duration, is_player, summoner_string, behaviour, god, power);
+ map_malign_gateway_marker *mark = new map_malign_gateway_marker(pos,
+ duration, is_player, summoner_string, behaviour, god, power);
return (mark);
}
std::string map_malign_gateway_marker::debug_describe() const
{
- return make_stringf("Malign gateway (%d, %s)", duration, is_player ? "player" : "monster");
+ return make_stringf("Malign gateway (%d, %s)", duration,
+ is_player ? "player" : "monster");
}
//////////////////////////////////////////////////////////////////////////