diff options
author | Mats Lidell <matsl@rockbox.org> | 2003-01-14 10:48:01 +0000 |
---|---|---|
committer | Mats Lidell <matsl@rockbox.org> | 2003-01-14 10:48:01 +0000 |
commit | c65dadf0b42362492cfe11dc565a5fab0b9e7390 (patch) | |
tree | c651554a76d1efcac0f6e9cc2008db63ce2f7fb7 /apps/settings_menu.c | |
parent | 4c7f70fe9ae4a516a1e3794f60abd95c603ddbba (diff) |
Bidirectional scroll for player.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3081 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r-- | apps/settings_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index 240abcd447..da997ac15c 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -420,13 +420,13 @@ static bool scroll_step(void) &global_settings.scroll_step, &lcd_scroll_step, 1, 1, LCD_WIDTH ); } +#endif static bool bidir_limit(void) { return set_int(str(LANG_BIDIR_SCROLL), "%", &global_settings.bidir_limit, &lcd_bidir_scroll, 25, 0, 200 ); } -#endif #ifndef SIMULATOR /** @@ -686,8 +686,8 @@ static bool scroll_settings_menu(void) { str(LANG_SCROLL_DELAY), scroll_delay }, #ifdef HAVE_LCD_BITMAP { str(LANG_SCROLL_STEP), scroll_step }, - { str(LANG_BIDIR_SCROLL), bidir_limit }, #endif + { str(LANG_BIDIR_SCROLL), bidir_limit }, }; m = menu_init( items, sizeof items / sizeof(struct menu_items) ); |