summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-23 02:19:47 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-23 02:19:47 +0000
commitd6a0f6ccd983f7a1082267dfbadc0a51af07fc77 (patch)
treefd467c684ef17aa895617a3401d2d96289ee4cd1 /apps
parent2630245cb9a6504269951738363b1c07479bdc52 (diff)
downloadrockbox-d6a0f6ccd983f7a1082267dfbadc0a51af07fc77.tar.gz
rockbox-d6a0f6ccd983f7a1082267dfbadc0a51af07fc77.zip
Fixed a problem with my #define CUSTOM_WPS - It didn't lower the menu items to 4 from 5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1936 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/settings_menu.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index b530073ceb..0d88edfff4 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -91,14 +91,16 @@ static void wps_set(void)
91 char* names[] = { "ID3 Tags", "File ", "Parse " }; 91 char* names[] = { "ID3 Tags", "File ", "Parse " };
92 set_option("[WPS display]", &global_settings.wps_display, names, 3 ); 92 set_option("[WPS display]", &global_settings.wps_display, names, 3 );
93#else 93#else
94 char* names[] = { "1 Line ID3", "2 Line ID3", "File ","Parse ",
95#ifdef CUSTOM_WPS 94#ifdef CUSTOM_WPS
96 "Custom WPS " }; 95 char* names[] = { "1 Line ID3", "2 Line ID3", "File ",
96 "Parse ", "Custom WPS " };
97 set_option("[WPS display]", &global_settings.wps_display, names, 5 );
97#else 98#else
98 }; 99 char* names[] = { "1 Line ID3", "2 Line ID3", "File ",
100 "Parse " };
101 set_option("[WPS display]", &global_settings.wps_display, names, 4 );
99#endif 102#endif
100 103
101 set_option("[WPS display]", &global_settings.wps_display, names, 5 );
102#endif 104#endif
103} 105}
104 106