From 7821a45772e3ef02184252928a37d318af0e855e Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 4 Jun 2001 21:15:23 +0000 Subject: [PATCH] - 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) --- src/Input/input.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5