summaryrefslogtreecommitdiff
path: root/apps/menus/sound_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/sound_menu.c')
-rw-r--r--apps/menus/sound_menu.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/menus/sound_menu.c b/apps/menus/sound_menu.c
index d953db93b3..70730a1e5a 100644
--- a/apps/menus/sound_menu.c
+++ b/apps/menus/sound_menu.c
@@ -102,6 +102,10 @@ MENUITEM_SETTING(stereo_width, &global_settings.stereo_width,
102 MENUITEM_SETTING(mdb_shape, &global_settings.mdb_shape, NULL); 102 MENUITEM_SETTING(mdb_shape, &global_settings.mdb_shape, NULL);
103#endif 103#endif
104 104
105#ifdef HAVE_SPEAKER
106 MENUITEM_SETTING(speaker_enabled, &global_settings.speaker_enabled, NULL);
107#endif
108
105 109
106 110
107MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio, 111MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio,
@@ -122,5 +126,8 @@ MAKE_MENU(sound_settings, ID2P(LANG_SOUND_SETTINGS), NULL, Icon_Audio,
122 ,&loudness,&avc,&superbass,&mdb_enable,&mdb_strength 126 ,&loudness,&avc,&superbass,&mdb_enable,&mdb_strength
123 ,&mdb_harmonics,&mdb_center,&mdb_shape 127 ,&mdb_harmonics,&mdb_center,&mdb_shape
124#endif 128#endif
129#ifdef HAVE_SPEAKER
130 ,&speaker_enabled
131#endif
125 ); 132 );
126 133