summaryrefslogtreecommitdiff
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
parent0d04073576304dc2e3a3f0109d0857d7da70059f (diff)
downloadrockbox-20955979ca5f6f0302a0b88e7934d6474de06287.zip
rockbox-20955979ca5f6f0302a0b88e7934d6474de06287.tar.gz
rockbox-20955979ca5f6f0302a0b88e7934d6474de06287.tar.bz2
rockbox-20955979ca5f6f0302a0b88e7934d6474de06287.tar.xz
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
-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 e66d0f3..08b1782 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -81,8 +81,13 @@ static void scroll_speed(void)
static void wps_set(void)
{
- char* names[] = { "Id3 ", "File ", "Parse" };
+#ifdef HAVE_LCD_BITMAP
+ char* names[] = { "ID3 Tags", "File ", "Parse " };
set_option("[WPS display]", &global_settings.wps_display, names, 3 );
+#else
+ char* names[] = { "1 Line ID3", "2 Line ID3", "File ", "Parse " };
+ set_option("[WPS display]", &global_settings.wps_display, names, 4 );
+#endif
}
#ifdef HAVE_CHARGE_CTRL