From: curt Date: Mon, 4 Jun 2001 21:15:23 +0000 (+0000) Subject: - make repeatable for keys and joystick buttons default to false X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7821a45772e3ef02184252928a37d318af0e855e;p=flightgear.git - make repeatable for keys and joystick buttons default to false rather than true; it's too confusing for users if keys and buttons repeat by default (keys weren't anyway, but they were supposed to) --- diff --git a/src/Input/input.hxx b/src/Input/input.hxx index 4ee5e0ddd..167f33daa 100644 --- a/src/Input/input.hxx +++ b/src/Input/input.hxx @@ -202,7 +202,7 @@ private: */ struct button { button () - : is_repeatable(true), + : is_repeatable(false), last_state(-1) {} bool is_repeatable;