Hi,
@SkyeFyre, looking at your code, you are replacing your loaded image with a captured blank area of the screen -
LOAD BITMAP "circle.bmp", 1
GET IMAGE 1, 0, 0, 102, 90
SPRITE 1, 170, 90, 1
WAIT KEY
END
You don't need to do the GET IMAGE command. Remove it, add a sync and it'll work -
LOAD BITMAP "circle.bmp", 1
SPRITE 1, 170, 90, 1
SYNC
WAIT KEY
END
You only need the GET IMAGE command if you want to capture an area of the screen, for example...
BOX 0,0,16,16
GET IMAGE 1, 0, 0, 16,16
SPRITE 1, 170, 90, 1
SYNC
WAIT KEY
END
EDIT:Actually, in my examples above, you don't need the Sync, but I put it there just to be sure the screen was updated
Hope it helps,
Cheers.