forked from len0rd/rockbox
Repeat mode should be an integer, not a boolean. Fixes bug #2955.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9743 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
76c1cde007
commit
d9f11ac41d
1 changed files with 2 additions and 2 deletions
|
@ -476,11 +476,11 @@ void quick_screen_quick_apply(struct gui_quickscreen *qs)
|
|||
|
||||
bool quick_screen_quick(int button_enter)
|
||||
{
|
||||
bool res, oldrepeat, oldshuffle;
|
||||
bool res, oldshuffle;
|
||||
struct option_select left_option;
|
||||
struct option_select bottom_option;
|
||||
struct option_select right_option;
|
||||
int old_x_margin, old_y_margin;
|
||||
int oldrepeat, old_x_margin, old_y_margin;
|
||||
|
||||
old_x_margin = lcd_getxmargin();
|
||||
old_y_margin = lcd_getymargin();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue