xref: /original-bsd/games/atc/tunable.c (revision f5b1856a)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Ed James.
7  *
8  * %sccs.include.redist.c%
9  */
10 
11 /*
12  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
13  *
14  * Copy permission is hereby granted provided that this notice is
15  * retained on all partial or complete copies.
16  *
17  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
18  */
19 
20 #ifndef lint
21 static char sccsid[] = "@(#)tunable.c	8.1 (Berkeley) 05/31/93";
22 #endif /* not lint */
23 
24 /*
25  * NUM_SCORES - Number of scores that are kept track of.
26  * Keep this greater than 0, but less than 100.
27  * 4 lines are printed above the score, one below + your prompt, so
28  * to prevent scrolling: 6 + NUM_SCORES <= 24 (lines on an average terminal).
29  */
30 int	NUM_SCORES =		18;
31