summaryrefslogtreecommitdiffstats
path: root/hunt/huntd/draw.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-29 19:41:10 +0000
committerdholland <dholland@NetBSD.org>2014-03-29 19:41:10 +0000
commitb432256ee8cb43f841c457f6d542c54fc98291e0 (patch)
treebe5c4234c2eb39a573a0c172953d2d5a5210c2e7 /hunt/huntd/draw.c
parentfa3a22500af8a864dcb4e24df60437f2c8503df7 (diff)
downloadbsdgames-darwin-b432256ee8cb43f841c457f6d542c54fc98291e0.tar.gz
bsdgames-darwin-b432256ee8cb43f841c457f6d542c54fc98291e0.tar.zst
bsdgames-darwin-b432256ee8cb43f841c457f6d542c54fc98291e0.zip
don't declare own boolean type
Diffstat (limited to 'hunt/huntd/draw.c')
-rw-r--r--hunt/huntd/draw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hunt/huntd/draw.c b/hunt/huntd/draw.c
index f56d4748..61756211 100644
--- a/hunt/huntd/draw.c
+++ b/hunt/huntd/draw.c
@@ -1,4 +1,4 @@
-/* $NetBSD: draw.c,v 1.8 2009/08/12 07:42:11 dholland Exp $ */
+/* $NetBSD: draw.c,v 1.9 2014/03/29 19:41:10 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: draw.c,v 1.8 2009/08/12 07:42:11 dholland Exp $");
+__RCSID("$NetBSD: draw.c,v 1.9 2014/03/29 19:41:10 dholland Exp $");
#endif /* not lint */
#include "hunt.h"
@@ -312,7 +312,7 @@ showstat(PLAYER *pp)
* unless he is cloaked.
*/
void
-drawplayer(PLAYER *pp, FLAG draw)
+drawplayer(PLAYER *pp, bool draw)
{
PLAYER *newp;
int x, y;