Quote:
Originally Posted by lpxxfaintxx
Code:
if (gps.Buttons.Back == ButtonState.Pressed)
this.Exit();
|
yeah, that says if the button is pressed exit, it doesn't say if button is held for X seconds exit but if for less than that, backspace
I'll probably just have it if button is pressed, start timer while(button is pressed) do nothing, on un pressing end timer, if timer.time>X do this, otherwise do this.
I knew I'd have to do it there, I'm not an idiot, just have to look up the easiest way to do a timer and stuff.