summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-04 12:02:48 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-05 05:14:16 +0100
commit076266abdc2cec419f10cbe97987f26b7b329c48 (patch)
tree940137814bbe41a3769f6ebccb88d92c8ed3642a /crawl-ref/source/effects.h
parentc85d5d303fb3957007230e665cb37b8d21e17376 (diff)
downloadcrawl-ref-076266abdc2cec419f10cbe97987f26b7b329c48.tar.gz
crawl-ref-076266abdc2cec419f10cbe97987f26b7b329c48.zip
Get rid of one remaining use of get_los().
Diffstat (limited to 'crawl-ref/source/effects.h')
-rw-r--r--crawl-ref/source/effects.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/effects.h b/crawl-ref/source/effects.h
index 20be349989..7da126ab36 100644
--- a/crawl-ref/source/effects.h
+++ b/crawl-ref/source/effects.h
@@ -35,10 +35,10 @@ int place_ring(vector<coord_def>& ring_points,
int& seen_count);
class los_base;
-// Collect lists of points that are within LOS (under the given losgrid),
-// unoccupied, and not solid (walls/statues).
+// Collect lists of points that are within LOS, unoccupied, and not solid
+// (walls/statues).
void collect_radius_points(vector<vector<coord_def> > &radius_points,
- const coord_def &origin, const los_base* los);
+ const coord_def &origin, los_type los);
void random_uselessness(int scroll_slot = -1);