diff options
| author | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 17:29:16 +0000 |
|---|---|---|
| committer | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 17:29:16 +0000 |
| commit | 5bade50b6af1494e8e045694f5f0d290582c1af7 (patch) | |
| tree | 211a256b21aa5fa5ec153eec052eba6563adfaf9 | |
| parent | 77ef07c3f56bfdc9a965f84d7acade6433989ab2 (diff) | |
| download | rockbox-5bade50b6af1494e8e045694f5f0d290582c1af7.zip rockbox-5bade50b6af1494e8e045694f5f0d290582c1af7.tar.gz rockbox-5bade50b6af1494e8e045694f5f0d290582c1af7.tar.bz2 rockbox-5bade50b6af1494e8e045694f5f0d290582c1af7.tar.xz | |
Fix for display of WPS settings in the menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2086 a1c6a512-1295-4272-9138-f99709370657
| -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 7cbfc18..0d25fc9 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -97,10 +97,10 @@ static Menu scroll_speed(void) static Menu wps_set(void) { #ifdef HAVE_LCD_BITMAP - char* names[] = { "ID3 Tags", "File ", "Parse ", "Custom WPS " }; + char* names[] = { "ID3 Tags ", "File ", "Parse ", "Custom WPS " }; set_option("[WPS display]", &global_settings.wps_display, names, 4 ); #else - char* names[] = { "1 Line ID3", "2 Line ID3", "File ", + char* names[] = { "1 Line ID3", "2 Line ID3", "File ", "Parse ", "Custom WPS " }; set_option("[WPS display]", &global_settings.wps_display, names, 5 ); #endif |