* 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

9
tetris/.cvsignore Normal file
View File

@@ -0,0 +1,9 @@
a.out
*.d
*.i
*.s
*.d.tmp
tetris
pathnames.h
tetris.6
tetris-bsd.6

View File

@@ -160,7 +160,7 @@ main(argc, argv)
case 'l':
level = atoi(optarg);
if (level < MINLEVEL || level > MAXLEVEL) {
errx(1, "tetris-bsd: level must be from %d to %d",
errx(1, "level must be from %d to %d",
MINLEVEL, MAXLEVEL);
}
break;