From 44fac3a89d25ca434f91c4f961a363ea590faae8 Mon Sep 17 00:00:00 2001 From: billf Date: Tue, 16 Nov 1999 02:58:06 +0000 Subject: Sync our register usage with NetBSD's (non-)usage. --- games/rogue/room.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'games/rogue/room.c') diff --git a/games/rogue/room.c b/games/rogue/room.c index fe9f25f..6285ec2 100644 --- a/games/rogue/room.c +++ b/games/rogue/room.c @@ -175,9 +175,9 @@ short rn; } get_dungeon_char(row, col) -register row, col; +row, col; { - register unsigned short mask = dungeon[row][col]; + unsigned short mask = dungeon[row][col]; if (mask & MONSTER) { return(gmc_row_col(row, col)); @@ -223,7 +223,7 @@ register row, col; } get_mask_char(mask) -register unsigned short mask; +unsigned short mask; { switch(mask) { case SCROL: @@ -314,7 +314,7 @@ party_objects(rn) } get_room_number(row, col) -register row, col; +row, col; { short i; -- cgit v1.1