Hello, All
I've just been loading my graphics into memory and displaying them, it works fine but i decided to change the Cls colour to whitish, but now it's not showing any black in my images.
AppTitle "BreakIn!"
Local ScreenHeight = 165
Local ScreenWidth = 165
Graphics ScreenWidth,ScreenHeight
Local Pad = LoadImage("Pad.bmp")
Local PadX = 0
Local PadY = 128
SetBuffer BackBuffer()
ClsColor 250,250,250
While Not KeyDown(1)
Cls
DrawImage Pad,PadX,PadY
Flip
If KeyDown(203) Then PadX = PadX - 1: Delay 15
If KeyDown(205) Then PadX = PadX + 1: Delay 15
Wend
End
I've just been loading my graphics into memory and displaying them, it works fine but i decided to change the Cls colour to whitish, but now it's not showing any black in my images.
AppTitle "BreakIn!"
Local ScreenHeight = 165
Local ScreenWidth = 165
Graphics ScreenWidth,ScreenHeight
Local Pad = LoadImage("Pad.bmp")
Local PadX = 0
Local PadY = 128
SetBuffer BackBuffer()
ClsColor 250,250,250
While Not KeyDown(1)
Cls
DrawImage Pad,PadX,PadY
Flip
If KeyDown(203) Then PadX = PadX - 1: Delay 15
If KeyDown(205) Then PadX = PadX + 1: Delay 15
Wend
End