when using _free timer i have found it disrupts my display
i find that printing to my screen works fine but then it jumps to a on timer. i print something else eg.locate 24,1:print "timer";tim:return and on return it continues printing but in the wrong spot
I wonder if the timer does not push the display co ordinates on the stack and pop them off on return to continue where left off....
eg. push x,y screen location
jsr timer (on gosub timer)
pop x,y
ret (end)
timer:
locate x,y
print "what ever where even"
ret (return from timer)
this what doing
xxxxxxxxxxxxxxxxxdxxxxx
xhellxxxxxxxxxxxxxxxxxxx
xxxxxxxxxo worlxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxx
this what should be
xxxxxxxxxxxxxxxxxxxxxxx
xhello worldxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxx
its like it forgets the x,y on return