- 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:
parent
0dc313c955
commit
7821a45772
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ private:
|
|||
*/
|
||||
struct button {
|
||||
button ()
|
||||
: is_repeatable(true),
|
||||
: is_repeatable(false),
|
||||
last_state(-1)
|
||||
{}
|
||||
bool is_repeatable;
|
||||
|
|
Loading…
Reference in a new issue