`timer display - independent of fps, as float and to 1dp
oldtime#=timer()
do
cls
t#=timer()-oldtime#
secs=int(t#/1000)
tenths = val(right$(left$(str$(t#),len(str$(int(t#)))-2),1))
set cursor 0,0
print "time to 1 dp =",secs,".",tenths," time as float =",t#/1000
loop
I came up with this after coming across a similar problem of wanting to show the time to 1 dp. You can use this, although it doesn't actually round the numbers up - it just knocks off the unwanted digits. You could adapt it to round up quite easily though if you needed to be that accurate.