is it only the print function that does it? do sprites move and update correctly? how about normal text from createtext()?
i.e. should just show the 3 words placed randomly around the screen (no repeats)
Setvirtualresolution(640,480)
SetClearColor (255, 200, 100 )
//Create an array and store three words, one in each array element
Words as string[2]
Words[0] = "App"
Words[1] = "Game"
Words[2] = "Kit"
//Create three text objects, each containing one of the words
//Randomly set the text size of each text object
//Set each text object to display black text
For i=0 to 2
CreateText(i,Words[i])
SetTextSize(i,Random(15,35))
SetTextColor(i,0,0,0,255)
Next i
do
if GetRawKeyState(27) = 1 then end
SetTextPosition(Random(0,2),Random(0,600),Random(0,400))
sync()
sleep(250)
loop
life's one big game
spec= i5 4ghz, 16gb ram, Nvidia 1070ti gpu