]> git.mxchange.org Git - flightgear.git/commitdiff
- make repeatable for keys and joystick buttons default to false
authorcurt <curt>
Mon, 4 Jun 2001 21:15:23 +0000 (21:15 +0000)
committercurt <curt>
Mon, 4 Jun 2001 21:15:23 +0000 (21:15 +0000)
  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)

src/Input/input.hxx

index 4ee5e0dddfe3b965fb455765f5436bc49ecf9b44..167f33daa4253209db1d43841066e36429210ccf 100644 (file)
@@ -202,7 +202,7 @@ private:
    */
   struct button {
     button ()
-      : is_repeatable(true),
+      : is_repeatable(false),
        last_state(-1)
     {}
     bool is_repeatable;