08-17-2025, 08:39 PM
(08-17-2025, 12:08 AM)bplus Wrote: OK that fixedInteresting, it works for me. It's possible that because it's in such a tight loop at the end that it was not processing the keypresses. You could try adding the following call to _Limit to the loop starting on line 248 to see if it works any better for you. It's working for me either way.now for detecting the y keypress to play again?
Code: (Select All)
again$ = INKEY$
WHILE LEN(again$) = 0
again$ = INKEY$
_LIMIT 60
WEND



now for detecting the y keypress to play again?