don't add every 32-bit machine in existence
[unix-history] / usr / src / games / atc / tunable.c
CommitLineData
e04f5cf8
KB
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * 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
017d93a3
KB
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
e04f5cf8
KB
20#ifndef lint
21static char sccsid[] = "@(#)tunable.c 5.4 (Berkeley) %G%";
22#endif /* not lint */
23
017d93a3
KB
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 */
30int NUM_SCORES = 18;