* New upstream release, fixing problems in battlestar. Closes: #70465

git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5134 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2000-09-26 16:40:41 +00:00
parent a1f89ce3e1
commit 4cd9da8d1a
61 changed files with 478 additions and 66 deletions

8
robots/.cvsignore Normal file
View File

@@ -0,0 +1,8 @@
a.out
*.d
*.i
*.s
*.d.tmp
robots
pathnames.h
robots.6

View File

@@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.15 2000/01/19 19:43:42 jsm Exp $ */
/* $NetBSD: main.c,v 1.16 2000/05/08 07:56:05 mycroft Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: main.c,v 1.15 2000/01/19 19:43:42 jsm Exp $");
__RCSID("$NetBSD: main.c,v 1.16 2000/05/08 07:56:05 mycroft Exp $");
#endif
#endif /* not lint */

View File

@@ -1,4 +1,4 @@
/* $NetBSD: score.c,v 1.13 2000/04/09 23:02:52 mycroft Exp $ */
/* $NetBSD: score.c,v 1.15 2000/04/27 19:31:23 thorpej Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: score.c,v 1.13 2000/04/09 23:02:52 mycroft Exp $");
__RCSID("$NetBSD: score.c,v 1.15 2000/04/27 19:31:23 thorpej Exp $");
#endif
#endif /* not lint */
@@ -175,8 +175,8 @@ score(score_wfd)
move((scp - Top) + 2, 15);
if (!done_show && scp->s_uid == uid && scp->s_score == Score)
standout();
printw("%5d %5d %-8.8s %-9.9s %5d",
(scp - Top) + 1, scp->s_score, scp->s_name,
printw("%5ld %5d %-8.8s %-9.9s %5d",
(long)(scp - Top) + 1, scp->s_score, scp->s_name,
scp->s_auto ? "(autobot)" : "", scp->s_level);
if (!done_show && scp->s_uid == uid && scp->s_score == Score) {
standend();