Just thought I'd let you know, you can't copy a bitmap that is smaller or larger than the bitmap your copying to, well the root bitmap anyway (haven't tested others). They have to be the same size or you'll have to use the extra
COPY BITMAP params.
Your error:
set display mode 640,480,32
create bitmap 1, 640,380 << The height is smaller than the resolution by 100
SET CURRENT BITMAP 1
ink rgb(255,255,255),rgb(0,0,0)
line 10,380,630,380
copy bitmap 1, 0
wait key
end
So set the bitmap to the resolution of the bitmap your copying to, so in this case the screen resolution:
set display mode 640,480,32
create bitmap 1, 640,480
SET CURRENT BITMAP 1
ink rgb(255,255,255),rgb(0,0,0)
line 10,380,630,380
copy bitmap 1, 0
wait key
end
A dream is a fantasy, if you achieve that fantasy it was never a dream to begin with.