Hi there,
I'm very new to BlitzMax and I am learning how to code in it from things on the internet, but it is very tough.
When I compile and test this, the screen flashes.
-
' -------------------- '
' Meltdown Source Code '
' Eric Vaughn 2006 '
' -------------------- '
' Initialize Window
Graphics 400, 300, 16
HideMouse
' Load Images
player:TImage = LoadImage("images/player.bmp")
' Draw Images
Cls
DrawImage(player, 10, 10)
' Main Loop
While Not KeyHit(KEY_ESCAPE)
' Draw Screen
Flip
Wend
ShowMouse
-
How do I stop the flashing?
Thanks.
I'm very new to BlitzMax and I am learning how to code in it from things on the internet, but it is very tough.
When I compile and test this, the screen flashes.
-
' -------------------- '
' Meltdown Source Code '
' Eric Vaughn 2006 '
' -------------------- '
' Initialize Window
Graphics 400, 300, 16
HideMouse
' Load Images
player:TImage = LoadImage("images/player.bmp")
' Draw Images
Cls
DrawImage(player, 10, 10)
' Main Loop
While Not KeyHit(KEY_ESCAPE)
' Draw Screen
Flip
Wend
ShowMouse
-
How do I stop the flashing?
Thanks.