summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-22 14:19:47 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-22 14:19:47 +0000
commit1a8f34bfa9bf274b292e1c65532edd89f2589884 (patch)
tree2c5261f19a625a3f044fd44485c7dac700777202 /apps/settings_menu.c
parentae3952ec90ba7d86ea046b0553cc5e4c1d626b65 (diff)
downloadrockbox-1a8f34bfa9bf274b292e1c65532edd89f2589884.tar.gz
rockbox-1a8f34bfa9bf274b292e1c65532edd89f2589884.zip
Changed CUSTOM_WPS to be a define-only feature until it is more complete. To include it, simply uncomment the #define CUSTOM_WPS line in wps.h
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1924 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 4d3a0ed6c5..21b61d7093 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -86,8 +86,13 @@ static void wps_set(void)
86 char* names[] = { "ID3 Tags", "File ", "Parse " }; 86 char* names[] = { "ID3 Tags", "File ", "Parse " };
87 set_option("[WPS display]", &global_settings.wps_display, names, 3 ); 87 set_option("[WPS display]", &global_settings.wps_display, names, 3 );
88#else 88#else
89 char* names[] = { "1 Line ID3", "2 Line ID3", "File ", 89 char* names[] = { "1 Line ID3", "2 Line ID3", "File ","Parse ",
90 "Parse ", "Custom WPS " }; 90#ifdef CUSTOM_WPS
91 "Custom WPS " };
92#else
93 };
94#endif
95
91 set_option("[WPS display]", &global_settings.wps_display, names, 5 ); 96 set_option("[WPS display]", &global_settings.wps_display, names, 5 );
92#endif 97#endif
93} 98}