forked from len0rd/rockbox
puzzles: fix copy-paste typo
Change-Id: I09d065574a02a541c43c1a78d92e50a80b5e2ae0
This commit is contained in:
parent
abef236081
commit
ab6e40b977
1 changed files with 2 additions and 2 deletions
|
@ -2798,7 +2798,7 @@ static void tune_input(const char *name)
|
|||
NULL
|
||||
};
|
||||
|
||||
input_settings.ignore_repeats = !string_in_list(name, falling_edge);
|
||||
input_settings.ignore_repeats = !string_in_list(name, ignore_repeats);
|
||||
|
||||
/* set to false if you want dragging to be possible */
|
||||
static const char *rclick_on_hold[] = {
|
||||
|
@ -2808,7 +2808,7 @@ static void tune_input(const char *name)
|
|||
NULL
|
||||
};
|
||||
|
||||
input_settings.rclick_on_hold = !string_in_list(name, falling_edge);
|
||||
input_settings.rclick_on_hold = !string_in_list(name, rclick_on_hold);
|
||||
|
||||
static const char *mouse_games[] = {
|
||||
"Loopy",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue