summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-19 07:26:07 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-19 07:26:07 +0000
commit20955979ca5f6f0302a0b88e7934d6474de06287 (patch)
treed539ca30b57e2e32b7a39a3dacbc8d47d6cb4d41 /apps
parent0d04073576304dc2e3a3f0109d0857d7da70059f (diff)
downloadrockbox-20955979ca5f6f0302a0b88e7934d6474de06287.tar.gz
rockbox-20955979ca5f6f0302a0b88e7934d6474de06287.zip
Added a 1 Line ID3 display for player that displays the PlaylistPos: Artist - Title on the first line and time on the 2nd line. NOTE: WPS Display saved settings will be loaded incorrectly on the player the first time. Rearranged the WPS Settings menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1793 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/settings_menu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index e66d0f389c..08b1782850 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -81,8 +81,13 @@ static void scroll_speed(void)
81 81
82static void wps_set(void) 82static void wps_set(void)
83{ 83{
84 char* names[] = { "Id3 ", "File ", "Parse" }; 84#ifdef HAVE_LCD_BITMAP
85 char* names[] = { "ID3 Tags", "File ", "Parse " };
85 set_option("[WPS display]", &global_settings.wps_display, names, 3 ); 86 set_option("[WPS display]", &global_settings.wps_display, names, 3 );
87#else
88 char* names[] = { "1 Line ID3", "2 Line ID3", "File ", "Parse " };
89 set_option("[WPS display]", &global_settings.wps_display, names, 4 );
90#endif
86} 91}
87 92
88#ifdef HAVE_CHARGE_CTRL 93#ifdef HAVE_CHARGE_CTRL