can anyone tell my why this doesn't work?
when I run this the screen is empty. The image is valid. I don't get it.
The only way I've been able to get this to work is to create a new pixmap and manually copy all the pixels to the new pixmap. Am I doing something wrong?
Graphics 800,600 Local myPic:TPixmap = LoadPixmap("spark1.png") While Not KeyDown(KEY_ESCAPE) Cls() DrawPixmap myPic,MouseX(),MouseY() Flip Wend
when I run this the screen is empty. The image is valid. I don't get it.
The only way I've been able to get this to work is to create a new pixmap and manually copy all the pixels to the new pixmap. Am I doing something wrong?