summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 15:38:40 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-26 15:38:40 +0000
commit17fb80af7acbed035921b894f2b2712f93afd670 (patch)
tree272ce229e35e326f0ad2ed492bfd5e154235ed5b /crawl-ref/source/stuff.h
parent416bb292eb8bab5f0bb094a369921703663e5bb6 (diff)
downloadcrawl-ref-17fb80af7acbed035921b894f2b2712f93afd670.tar.gz
crawl-ref-17fb80af7acbed035921b894f2b2712f93afd670.zip
Simplify monster_random_space().
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8790 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/stuff.h')
-rw-r--r--crawl-ref/source/stuff.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/stuff.h b/crawl-ref/source/stuff.h
index a29c0c07e7..415feeaa2b 100644
--- a/crawl-ref/source/stuff.h
+++ b/crawl-ref/source/stuff.h
@@ -152,9 +152,8 @@ int yesnoquit( const char* str, bool safe = true, int safeanswer = 0,
bool allow_all = false, bool clear_after = true,
char alt_yes = 'Y', char alt_yes2 = 'Y' );
-
-bool in_bounds( int x, int y );
-bool map_bounds( int x, int y );
+bool in_bounds(int x, int y);
+bool map_bounds(int x, int y);
coord_def random_in_bounds();
inline bool in_bounds(const coord_def &p)