1
0
Fork 0

- 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)
This commit is contained in:
curt 2001-06-04 21:15:23 +00:00
parent 0dc313c955
commit 7821a45772

View file

@ -202,7 +202,7 @@ private:
*/
struct button {
button ()
: is_repeatable(true),
: is_repeatable(false),
last_state(-1)
{}
bool is_repeatable;