Acmcl2.605 net.games.pacman utzoo!decvax!ucbvax!ihnss!cbosg!harpo!floyd!cmcl2!salkind Fri Feb 26 13:36:54 1982 Redrawing the screen In the distributed pacman there is no way to redraw the screen if it gets messed up (I get biffed alot!). Here are the changes you should make to have ^L redraw the screen: ***** somewhere around line 664 (util.c) ***** case GAME2: game = 2; break; case REDRAW: clearok(curscr, TRUE); refresh(); break; default: ***** somewhere around line 28 (pacdefs.h) ***** #define NDOWN 'x' #define HALT ' ' #define REDRAW '\014' /* redraw screen */ ***** Lou Salkind cmcl2!salkind