I added my very old pacman project to the tutorials page for beginners to learn from. If you can improve it, do it plz.

anyway here's the link: http://www.pascalgamedevelopment.com...?p=38130#38130


EDIT: I quickly checked the code and noticed: "while(Quit_Flag = False)". Please use a timer. This way you don't block windows messages. "Application.ProcessMessages" (Delphi) is a bad way to invoke messages. And in the meanwhile you learn how to use a timer in your game!!