summaryrefslogtreecommitdiffstats
path: root/games/hack/hack.cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/hack/hack.cmd.c')
-rw-r--r--games/hack/hack.cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/hack/hack.cmd.c b/games/hack/hack.cmd.c
index ba2f428..27beaae 100644
--- a/games/hack/hack.cmd.c
+++ b/games/hack/hack.cmd.c
@@ -95,7 +95,7 @@ char *cmd;
{
struct func_tab *tlist = cmdlist;
boolean firsttime = FALSE;
- res;
+ int res;
if(!cmd) {
firsttime = TRUE;
@@ -256,7 +256,7 @@ boolean s;
confdir()
{
- x = rn2(8);
+ int x = rn2(8);
u.dx = xdir[x];
u.dy = ydir[x];
}
@@ -297,7 +297,7 @@ isroom(x,y) x,y; { /* what about POOL? */
}
#endif QUEST
-isok(x,y) x,y; {
+isok(x,y) int x,y; {
/* x corresponds to curx, so x==1 is the first column. Ach. %% */
return(x >= 1 && x <= COLNO-1 && y >= 0 && y <= ROWNO-1);
}
OpenPOWER on IntegriCloud