From 4277eaea5e02fb69d64193a0395357e2c346afdb Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 21 Nov 2009 12:37:25 -0600 Subject: Add formatting fixes. This mostly puts && and || on the proper lines, per the style guide. --- crawl-ref/source/mapmark.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/mapmark.cc') diff --git a/crawl-ref/source/mapmark.cc b/crawl-ref/source/mapmark.cc index cf8b378d30..612c0fc8df 100644 --- a/crawl-ref/source/mapmark.cc +++ b/crawl-ref/source/mapmark.cc @@ -823,8 +823,8 @@ bool feature_marker_at(const coord_def &pos, dungeon_feature_type feat) for (int i = 0, size = markers.size(); i < size; ++i) { map_marker *mark = markers[i]; - if (mark->get_type() == MAT_FEATURE && - dynamic_cast(mark)->feat == feat) + if (mark->get_type() == MAT_FEATURE + && dynamic_cast(mark)->feat == feat) { return (true); } -- cgit v1.2.3-54-g00ecf