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