diff options
author | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-11-16 10:26:38 +0000 |
commit | 520fff788fc8f2154247a6cff986abf634fdbb51 (patch) | |
tree | 839b85661e38597650d090e9cb482291451611bb /games/hack/hack.zap.c | |
parent | 44fac3a89d25ca434f91c4f961a363ea590faae8 (diff) | |
download | FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.zip FreeBSD-src-520fff788fc8f2154247a6cff986abf634fdbb51.tar.gz |
Add type int to those variables without a type. This is caused by the
frequent use of ``register var'' instead of ``register int var'' and
the removal of the register hint in the previous commit.
Diffstat (limited to 'games/hack/hack.zap.c')
-rw-r--r-- | games/hack/hack.zap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/hack/hack.zap.c b/games/hack/hack.zap.c index 20f5a91..957b46c44 100644 --- a/games/hack/hack.zap.c +++ b/games/hack/hack.zap.c @@ -386,7 +386,7 @@ boomhit(dx,dy) { } char -dirlet(dx,dy) dx,dy; { +dirlet(dx,dy) int dx,dy; { return (dx == dy) ? '\\' : (dx && dy) ? '/' : dx ? '-' : '|'; } @@ -543,7 +543,7 @@ int dx,dy; zhit(mon,type) /* returns damage to mon */ struct monst *mon; -type; +int type; { int tmp = 0; @@ -595,7 +595,7 @@ struct obj *obj; rloco(obj) struct obj *obj; { - tx,ty,otx,oty; + int tx,ty,otx,oty; otx = obj->ox; oty = obj->oy; |