compilation bits

- remove an unused variable in use_pick_axe2
- wiz_debug_cmd needs to return an int like other extended commands
This commit is contained in:
cohrs
2002-04-21 17:43:17 +00:00
parent b1055ae7c1
commit 5bc5910ed8
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
* module you are trying to debug) or things are going to get rather
* hard to link :-)
*/
extern void NDECL(wiz_debug_cmd);
extern int NDECL(wiz_debug_cmd);
#endif
#ifdef DUMB /* stuff commented out in extern.h, but needed here */

View File

@@ -851,7 +851,6 @@ struct obj *obj;
register struct rm *lev;
int dig_target;
boolean ispick = is_pick(obj);
const char *verb = ispick ? "dig" : "chop";
const char *verbing = ispick ? "digging" : "chopping";
if (u.uswallow && attack(u.ustuck)) {
@@ -1516,7 +1515,7 @@ struct obj *otmp;
#endif
#ifdef DEBUG
void
int
wiz_debug_cmd() /* in this case, bury everything at your loc and around */
{
int x, y;
@@ -1524,6 +1523,7 @@ wiz_debug_cmd() /* in this case, bury everything at your loc and around */
for (x = u.ux - 1; x <= u.ux + 1; x++)
for (y = u.uy - 1; y <= u.uy + 1; y++)
if (isok(x,y)) bury_objs(x,y);
return 0;
}
#endif /* DEBUG */