From 046259db79db0d99e9c073f5c3c32db75b107818 Mon Sep 17 00:00:00 2001 From: Allanis Date: Sun, 23 Jun 2013 13:28:32 +0100 Subject: [PATCH] [Change] Lowering default ms delay to trigger afterburner from 500 to 200. --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.c b/src/input.c index ee8e3cb..a2c8bbe 100644 --- a/src/input.c +++ b/src/input.c @@ -33,7 +33,7 @@ const char* keybindNames[] = { /* Accel hacks. */ static unsigned int input_accelLast = 0; /* Used to see if double tap. */ -unsigned int input_afterburnSensibility = 500; /* ms between taps to afterburn. */ +unsigned int input_afterburnSensibility = 200; /* ms between taps to afterburn. */ /* From player.c */ extern double player_turn;