- lua should use prnt for onscreen text

This commit is contained in:
2022-10-22 18:22:20 +02:00
parent 0b989de55f
commit 7d1ea4b22e

View File

@@ -6,7 +6,7 @@ end
function _update()
cls(20)
print(text,x,60)
prnt(text,x,60)
x=x+1
if x>160 then x=-strlen(text)*4 end
end