@WindowsKiller
The reason I asked that question is: Backsave restore is the default setting. Destrugter 1's sprites should not behave as described unless backsave had been turned off. If set sprite command was not used to turn off backsave then perhaps a plugin?
sync on:sync rate 0
set text opaque
hide mouse
create bitmap 1,32,32
ink rgb(255,255,0),0
line 16,0,24,32
line 24,32,0,11
line 0,11,32,11
line 32,11,7,32
line 7,32,16,0
get image 1,0,0,32,32
delete bitmap 1
ink rgb(255,255,0),rgb(0,0,128)
do
if keystate(48)=1:` "b" key
set sprite 1,1,1
text 0,15,"Backsave on "
endif
if keystate(49)=1:` "n" key
set sprite 1,0,1
text 0,15,"Backsave off "
endif
sprite 1,mousex(),mousey(),1
text 0,0,"fps: "+str$(screen fps())
sync
loop
And, yes restore slows things down. I haven't tested the alternitives yet.
Whatever...