Wotcha, folks.
I really wanna like DBp over BlitzBasic, but I can't help feeling I'm missing something fundemental about DBp.
In another post, I detailed problems getting a bitmap to show. When I got it to show, it seemed to distort the image. This happened regardless of the resolution, windowed mode, etc.
So, can someone tell me why this code for BlitzBasic:
Graphics 800,600
ball=LoadImage ("ball.bmp")
While Not KeyHit(1)
DrawImage ball,MouseX(),MouseY()
Wend
End
..shows this
And this code for DBp:
set display mode 800,600,32
set window on
do
load image "ball.bmp",1
sprite 1,400,300,1
loop
end
..shows this
Both use exactly the same .bmp file, but DBp seems to blur or squash it!
As I say, I've tried it at loads of resolutions and screen modes.
Am I missing something fundemntal ?
Tobo