summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-09-25 16:54:24 +0200
committerRobert Vollmert <rvollmert@gmx.net>2009-10-06 17:45:16 +0200
commit9712c77f98bb70849f42e073801ac0319b8b846b (patch)
treec2b976c6fdfc2ac507b42b5c17f5a9c0c0125dfc /crawl-ref/source/effects.cc
parentf409c04e8f5b4525caeb2683fd71c778efdadaf1 (diff)
downloadcrawl-ref-9712c77f98bb70849f42e073801ac0319b8b846b.tar.gz
crawl-ref-9712c77f98bb70849f42e073801ac0319b8b846b.zip
Convert varius occurrences of LOS_RADIUS * LOS_RADIUS.
LOS actually goes to LOS_RADIUS * LOS_RADIUS + 1. None of the occurrences are likely to have had a big effect, however.
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index ee0321e026..51a8b8a3d7 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -4276,7 +4276,7 @@ void collect_radius_points(std::vector<std::vector<coord_def> > &radius_points,
int current_r = 1;
int current_thresh = current_r * (current_r + 1);
- int max_distance = LOS_RADIUS * LOS_RADIUS;
+ int max_distance = LOS_RADIUS * LOS_RADIUS + 1;
while (!fringe.empty())
{