Hey, i'm trying to create a pausing screen like so:
as you can see my pausing is a function called by the key pressed "P"
heres the function:
I'm trying to figure out 2 things...
1. how to make it work (hah) because at the moment it just flickers on when pressed
2. how to make it wait until a like the [P] key is pressed again, not just anykey.
If KeyHit(P) Pause(pausedpic) End If
as you can see my pausing is a function called by the key pressed "P"
heres the function:
Function Pause(picture$) DrawImage picture$,0,0 WaitKey() End Function
I'm trying to figure out 2 things...
1. how to make it work (hah) because at the moment it just flickers on when pressed
2. how to make it wait until a like the [P] key is pressed again, not just anykey.