From 24891de52a054839fc5aa2de5483cd0522015154 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Tue, 24 Nov 2009 11:25:10 +0100 Subject: Remove unused default arguments. --- crawl-ref/source/directn.cc | 8 ++++---- 1 file 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); -- cgit v1.2.3-54-g00ecf