summaryrefslogtreecommitdiffstats
path: root/games/rogue/move.c
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>1999-11-16 11:55:58 +0000
committermarcel <marcel@FreeBSD.org>1999-11-16 11:55:58 +0000
commit1f86b5a621c2e51a61e461361e1bd7eb85801a08 (patch)
treeb149ed5ffdfb3749fb55d1fd9ba7c419f56bfdf7 /games/rogue/move.c
parent2227cc5c51e2fdba549d7f71b08a0639cc1bd274 (diff)
downloadFreeBSD-src-1f86b5a621c2e51a61e461361e1bd7eb85801a08.zip
FreeBSD-src-1f86b5a621c2e51a61e461361e1bd7eb85801a08.tar.gz
Fix breakage in previous commit.
Diffstat (limited to 'games/rogue/move.c')
-rw-r--r--games/rogue/move.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/rogue/move.c b/games/rogue/move.c
index 59c92e4..b892a0a 100644
--- a/games/rogue/move.c
+++ b/games/rogue/move.c
@@ -226,7 +226,7 @@ short dirch;
}
is_passable(row, col)
-row, col;
+int row, col;
{
if ((row < MIN_ROW) || (row > (DROWS - 2)) || (col < 0) ||
(col > (DCOLS-1))) {
@@ -239,7 +239,7 @@ row, col;
}
next_to_something(drow, dcol)
-drow, dcol;
+int drow, dcol;
{
short i, j, i_end, j_end, row, col;
short pass_count = 0;
OpenPOWER on IntegriCloud