diff options
| author | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 07:11:18 +0000 |
|---|---|---|
| committer | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 07:11:18 +0000 |
| commit | 9b62c23d8f59483961355fbd2841d3a2d4e0616b (patch) | |
| tree | 54ce557530fc174a9670b2e9d5cb45c74bceb0bb /apps/settings_menu.c | |
| parent | 98cb63629b2eb76b49b21ccf60fcd7e743897145 (diff) | |
| download | rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.zip rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.tar.gz rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.tar.bz2 rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.tar.xz | |
Got rid of the old WPS, and use Custom WPS as the method of WPS updating. Also working on a player progress bar (using a custom character). That is now able to be #included with -DPLAYER_PROGRESS in the apps/Makefile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2074 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
| -rw-r--r-- | apps/settings_menu.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index 33dee69..977c5cd 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -97,24 +97,12 @@ static Menu scroll_speed(void) static Menu wps_set(void) { #ifdef HAVE_LCD_BITMAP -#ifdef CUSTOM_WPS char* names[] = { "ID3 Tags", "File ", "Parse ", "Custom WPS " }; set_option("[WPS display]", &global_settings.wps_display, names, 4 ); #else - char* names[] = { "ID3 Tags", "File ", "Parse " }; - set_option("[WPS display]", &global_settings.wps_display, names, 3 ); -#endif -#else -#ifdef CUSTOM_WPS char* names[] = { "1 Line ID3", "2 Line ID3", "File ", "Parse ", "Custom WPS " }; set_option("[WPS display]", &global_settings.wps_display, names, 5 ); -#else - char* names[] = { "1 Line ID3", "2 Line ID3", "File ", - "Parse " }; - set_option("[WPS display]", &global_settings.wps_display, names, 4 ); -#endif - #endif return MENU_OK; } |