aboutsummaryrefslogtreecommitdiff
path: root/games/hack/hack.timeout.c
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-11-16 02:58:06 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-11-16 02:58:06 +0000
commit727bf60729b6e2f693b3a1162a2f4b32e49bf8bd (patch)
treea0cca4d47c73890ff2acd4b0d9331509ac360eb2 /games/hack/hack.timeout.c
parent879099e5568801911b66f1ea9085fed24fc12560 (diff)
Notes
Diffstat (limited to 'games/hack/hack.timeout.c')
-rw-r--r--games/hack/hack.timeout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hack/hack.timeout.c b/games/hack/hack.timeout.c
index ea0cc82c1953..f23febf7693d 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]);