summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-24 11:25:10 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-24 11:25:10 +0100
commit24891de52a054839fc5aa2de5483cd0522015154 (patch)
tree58a91594797703957fed6935f8c545aa37954b76 /crawl-ref/source/directn.cc
parent254c2ac607c3a7add782e947f602ed6effcd3bf1 (diff)
downloadcrawl-ref-24891de52a054839fc5aa2de5483cd0522015154.tar.gz
crawl-ref-24891de52a054839fc5aa2de5483cd0522015154.zip
Remove unused default arguments.
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 08ef886a18..9688c986ec 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -114,15 +114,15 @@ static bool _find_mlist( const coord_def& where, int mode, bool need_path,
static char _find_square_wrapper( const coord_def& targ,
coord_def &mfp, char direction,
bool (*find_targ)(const coord_def&, int, bool, int),
- bool need_path = false, int mode = TARG_ANY,
- int range = -1, bool wrap = false,
+ bool need_path, int mode,
+ int range, bool wrap,
int los = LOS_ANY);
static char _find_square( const coord_def& where,
coord_def &mfp, int direction,
bool (*find_targ)(const coord_def&, int, bool, int),
- bool need_path, int mode = TARG_ANY, int range = -1,
- bool wrap = false, int los = LOS_ANY);
+ bool need_path, int mode, int range,
+ bool wrap, int los = LOS_ANY);
static int _targetting_cmd_to_compass( command_type command );
static void _describe_oos_square(const coord_def& where);