Could some of you test the following code which I have just e-mailed to Lee. It is a slightly edited version of Lee's test code.
It runs fine and closes fine using U6.2 on my PC. But with U6.5 it takes forever to closedown and I seem to have to use Task Manager to close it. This is very similar to the symptoms Alquerian reported in the Bug Reports forum - except it doesn't use "clone object".
Don't forget to say which DBP upgrade you've used.
REM Project: SpeedTestAndClose
REM Created: 12/03/2007 03:23:40
REM
rem init
sync on
sync rate 0
tm as dword
tm1 as dword
tm3 as dword
rem resource eater
tm=timer()
for o=1001 to 3000
make object sphere o,0.5,3,3
position object o,cos(o/20.0)*10,rnd(20)-10,sin(o/20.0)*10
next o
for o=20001 to 22000
make object triangle o,0,0.5,0, 0,0,0, 0,0,0.5
position object o,cos(o/20.0)*10,rnd(20)-10,sin(o/20.0)*10
next o
sync
tm1=timer()-tm
rem test loop speed
do
set cursor 0,0
print "HIT SPACE"
print screen fps()
print statistic(1)
yrotate camera y# : inc y#,1.0
sync
if spacekey()=1 then exit
loop
rem free objects
tm=timer()
`delete objects 1,6000
tm3=timer()-tm
rem readout
sync off : backdrop off
cls 0
print "Timings"
print "Init=";tm1
print "Free=";tm3
wait key
rem end program
end