summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 14:41:05 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 14:41:05 +0000
commit7b6bdbbe4401348a2e40851809e0a00b480a5be0 (patch)
treedb8d36f08b15b86f238bc876b661a54b5f823870 /crawl-ref
parentf5d8f9770443f1503265fe93f58f97b4f54b38ce (diff)
downloadcrawl-ref-7b6bdbbe4401348a2e40851809e0a00b480a5be0.tar.gz
crawl-ref-7b6bdbbe4401348a2e40851809e0a00b480a5be0.zip
Apply trunk r10318 to 0.5.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@10319 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/abyss.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index b4111d0f43..d3537f4633 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -44,11 +44,11 @@ const coord_def abyss_center(45,35);
// If not_seen is true, don't place the feature where it can be seen from
// the centre.
-static bool _place_feature_near( const coord_def &centre,
- int radius,
- dungeon_feature_type candidate,
- dungeon_feature_type replacement,
- int tries, bool not_seen = false )
+static bool _place_feature_near(const coord_def &centre,
+ int radius,
+ dungeon_feature_type candidate,
+ dungeon_feature_type replacement,
+ int tries, bool not_seen = false)
{
const int radius2 = radius * radius + 1;
for (int i = 0; i < tries; ++i)