11-20-2023, 01:19 AM
All these pretty graphic examples, and nobody even bothered to look at my simple PRINT illustration. /sniffle
If the display was 60 FPS, and was perfectly synced, with a limit of 600 we'd only see it counting by 10s, and that's not happening. No need for fancy graphics to showcase the issue, when all you have to do is PRINT to see it in action.
Code: (Select All)
DO
LOCATE 1, 1: PRINT x
_LIMIT 600
_DISPLAY
x = x + 1
LOOP
If the display was 60 FPS, and was perfectly synced, with a limit of 600 we'd only see it counting by 10s, and that's not happening. No need for fancy graphics to showcase the issue, when all you have to do is PRINT to see it in action.