Albert G wrote
Just curious - how did you implement those delays in the Jack code ?
I have the same issue: the Pong game quits before I even get a chance to move the bat! I guess our machines are just a bit too powerful. :-)
Albert
Write a function
function void delay (int ms)
that has nested while loops. The outer loop decrements 'ms'. The inner loop repeats a constant number of times. The constant depends on the speed of your system.
--Mark