11-12-2022, 03:11 AM
@Pete -- That's it! I've had it with your *voodoo snoodoo poopoo* glitches. Watch the video below and explain to me how the heck a program can behave in such a manner!! Pay close attention to the memory usage in task manager as the program does its thing in the background...
You've broke what little brain I had left. What the heck type of glitch are you and SCREEN 0 pulling here? And why can't half the other people in the world seem to duplicate the process and run into the same issue??
^ Code used to generate the lovely little results we see above on my laptop.
You've broke what little brain I had left. What the heck type of glitch are you and SCREEN 0 pulling here? And why can't half the other people in the world seem to duplicate the process and run into the same issue??
Code: (Select All)
Dim f(-1 To 0) As Long
f(-1) = _LoadFont("lucon.ttf", 32, "monospace")
f(0) = _LoadFont("lucon.ttf", 34, "monospace")
'Screen _NewImage(640, 480, 32)
Do
f = Not f
_Font f(f)
Print "Hello World!"
_Display
Loop Until _KeyHit
^ Code used to generate the lovely little results we see above on my laptop.