xref: /csrg-svn/games/atc/tunable.c (revision 37641)
1*37641Sbostic /*
2*37641Sbostic  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
3*37641Sbostic  *
4*37641Sbostic  * Copy permission is hereby granted provided that this notice is
5*37641Sbostic  * retained on all partial or complete copies.
6*37641Sbostic  *
7*37641Sbostic  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
8*37641Sbostic  */
9*37641Sbostic 
10*37641Sbostic /*
11*37641Sbostic  * SPECIAL_DIR - Where the special files are kept.
12*37641Sbostic  * Change this to whatever you want.  Be sure to have to path end
13*37641Sbostic  * with a '/', like "/usr/games/lib/atc/".
14*37641Sbostic  */
15*37641Sbostic 
16*37641Sbostic char	SPECIAL_DIR[] =		DEST;
17*37641Sbostic 
18*37641Sbostic /*
19*37641Sbostic  * NUM_SCORES - Number of scores that are kept track of.
20*37641Sbostic  * Keep this greater than 0, but less than 100.
21*37641Sbostic  * 4 lines are printed above the score, one below + your prompt, so
22*37641Sbostic  * to prevent scrolling: 6 + NUM_SCORES <= 24 (lines on an average terminal).
23*37641Sbostic  */
24*37641Sbostic int	NUM_SCORES =		18;
25