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/hack/hack.timeout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'games/hack/hack.timeout.c') diff --git a/games/hack/hack.timeout.c b/games/hack/hack.timeout.c index ea0cc82..f23febf 100644 --- a/games/hack/hack.timeout.c +++ b/games/hack/hack.timeout.c @@ -5,7 +5,7 @@ #include "hack.h" timeout(){ -register struct prop *upp; +struct prop *upp; if(Stoned) stoned_dialogue(); for(upp = u.uprops; upp < u.uprops+SIZE(u.uprops); upp++) if((upp->p_flgs & TIMEOUT) && !--upp->p_flgs) { @@ -52,7 +52,7 @@ char *stoned_texts[] = { stoned_dialogue() { - register long i = (Stoned & TIMEOUT); + long i = (Stoned & TIMEOUT); if(i > 0 && i <= SIZE(stoned_texts)) pline(stoned_texts[SIZE(stoned_texts) - i]); -- cgit v1.1