xref: /csrg-svn/games/atc/tunable.c (revision 60740)
141166Sbostic /*-
2*60740Sbostic  * Copyright (c) 1990, 1993
3*60740Sbostic  *	The Regents of the University of California.  All rights reserved.
441166Sbostic  *
541166Sbostic  * This code is derived from software contributed to Berkeley by
641166Sbostic  * Ed James.
741166Sbostic  *
841166Sbostic  * %sccs.include.redist.c%
941166Sbostic  */
1041166Sbostic 
1137641Sbostic /*
1237641Sbostic  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
1337641Sbostic  *
1437641Sbostic  * Copy permission is hereby granted provided that this notice is
1537641Sbostic  * retained on all partial or complete copies.
1637641Sbostic  *
1737641Sbostic  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
1837641Sbostic  */
1937641Sbostic 
2041166Sbostic #ifndef lint
21*60740Sbostic static char sccsid[] = "@(#)tunable.c	8.1 (Berkeley) 05/31/93";
2241166Sbostic #endif /* not lint */
2341166Sbostic 
2437641Sbostic /*
2537641Sbostic  * NUM_SCORES - Number of scores that are kept track of.
2637641Sbostic  * Keep this greater than 0, but less than 100.
2737641Sbostic  * 4 lines are printed above the score, one below + your prompt, so
2837641Sbostic  * to prevent scrolling: 6 + NUM_SCORES <= 24 (lines on an average terminal).
2937641Sbostic  */
3037641Sbostic int	NUM_SCORES =		18;
31