summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 12:21:52 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 12:21:52 +0000
commit0b0c504b01c02f1100595be120f055f0f2dc1ba1 (patch)
tree2c2999c8c603bba52d0de6fb4d04f8bf0c7b1453 /crawl-ref/source/stuff.cc
parent7b6825cd2b530bb4d28df477160a2a81098dd3ac (diff)
downloadcrawl-ref-0b0c504b01c02f1100595be120f055f0f2dc1ba1.tar.gz
crawl-ref-0b0c504b01c02f1100595be120f055f0f2dc1ba1.zip
Add yet another cosmetic fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8787 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index 743e7d13a9..1f1ab72a38 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -1225,7 +1225,7 @@ int distance( int x, int y, int x2, int y2 )
const int dy = y - y2;
return ((dx * dx) + (dy * dy));
-} // end distance()
+}
bool adjacent( const coord_def& p1, const coord_def& p2 )
{