Apur-ee.248 net.games.pacman utzoo!decvax!pur-ee!ks Mon Feb 22 00:24:53 1982 Pacman Bug fix Mark Horton's version of pacman seems to have one annoying feature. (Otherwise, it is fantastic). When the monsters are "scared", it doesn't give you a chance to move every time. It only refreshes the screen every two moves. The fix is simple as shown..... In "pacman.c" around line 183 if (pacptr->speed == FAST) { >>>>>add this line>>>> refresh(); <<<<<<<<<<<<<<<<<<<<<<< pacman(); if (killflg == TURKEY) break; }; This does the trick. Kirk Smith Purdue EE