summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index 1141361281..0187da376d 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -980,6 +980,15 @@ static bool ff_rewind_settings_menu(void)
980 return result; 980 return result;
981} 981}
982 982
983static bool id3_order(void)
984{
985 return set_bool_options( str(LANG_ID3_ORDER),
986 &global_settings.id3_v1_first,
987 STR(LANG_ID3_V1_FIRST),
988 STR(LANG_ID3_V2_FIRST),
989 mpeg_id3_options);
990}
991
983static bool playback_settings_menu(void) 992static bool playback_settings_menu(void)
984{ 993{
985 int m; 994 int m;
@@ -993,6 +1002,7 @@ static bool playback_settings_menu(void)
993 { ID2P(LANG_WIND_MENU), ff_rewind_settings_menu }, 1002 { ID2P(LANG_WIND_MENU), ff_rewind_settings_menu },
994 { ID2P(LANG_MP3BUFFER_MARGIN), buffer_margin }, 1003 { ID2P(LANG_MP3BUFFER_MARGIN), buffer_margin },
995 { ID2P(LANG_FADE_ON_STOP), set_fade_on_stop }, 1004 { ID2P(LANG_FADE_ON_STOP), set_fade_on_stop },
1005 { ID2P(LANG_ID3_ORDER), id3_order },
996 }; 1006 };
997 1007
998 bool old_shuffle = global_settings.playlist_shuffle; 1008 bool old_shuffle = global_settings.playlist_shuffle;