summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-05 08:46:13 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 10:09:58 +0200
commitd8051c6f31ef3369827b6eaa4a6ccaaa72a8086e (patch)
tree183bf9ea91994a9772225723825be1d7a4062bca /crawl-ref/source/directn.h
parentd556f6b31283ea38b5bb26fcbffdc0fea25a2584 (diff)
downloadcrawl-ref-d8051c6f31ef3369827b6eaa4a6ccaaa72a8086e.tar.gz
crawl-ref-d8051c6f31ef3369827b6eaa4a6ccaaa72a8086e.zip
Get rid of in_los, in_vlos.
Diffstat (limited to 'crawl-ref/source/directn.h')
-rw-r--r--crawl-ref/source/directn.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/directn.h b/crawl-ref/source/directn.h
index 38d9f39622..3d7ddbdb90 100644
--- a/crawl-ref/source/directn.h
+++ b/crawl-ref/source/directn.h
@@ -264,10 +264,6 @@ bool in_viewport_bounds(int x, int y);
inline bool in_viewport_bounds(const coord_def& pos) {
return in_viewport_bounds(pos.x, pos.y);
}
-bool in_los(int x, int y);
-bool in_los(const coord_def &pos);
-bool in_vlos(int x, int y);
-bool in_vlos(const coord_def &pos);
std::string thing_do_grammar(description_level_type dtype,
bool add_stop,