summaryrefslogtreecommitdiff
path: root/apps/menus/playback_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/playback_menu.c')
-rw-r--r--apps/menus/playback_menu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/menus/playback_menu.c b/apps/menus/playback_menu.c
index 0d5a85483c..eb1597948b 100644
--- a/apps/menus/playback_menu.c
+++ b/apps/menus/playback_menu.c
@@ -1,4 +1,3 @@
1
2/*************************************************************************** 1/***************************************************************************
3 * __________ __ ___. 2 * __________ __ ___.
4 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
@@ -143,7 +142,7 @@ static int audioscrobbler_callback(int action,const struct menu_item_ex *this_it
143 { 142 {
144 case ACTION_EXIT_MENUITEM: /* on exit */ 143 case ACTION_EXIT_MENUITEM: /* on exit */
145 if (!scrobbler_is_enabled() && global_settings.audioscrobbler) 144 if (!scrobbler_is_enabled() && global_settings.audioscrobbler)
146 gui_syncsplash(HZ*2, "%s", ID2P(LANG_PLEASE_REBOOT)); 145 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
147 146
148 if(scrobbler_is_enabled() && !global_settings.audioscrobbler) 147 if(scrobbler_is_enabled() && !global_settings.audioscrobbler)
149 scrobbler_shutdown(); 148 scrobbler_shutdown();
@@ -161,7 +160,7 @@ static int cuesheet_callback(int action,const struct menu_item_ex *this_item)
161 { 160 {
162 case ACTION_EXIT_MENUITEM: /* on exit */ 161 case ACTION_EXIT_MENUITEM: /* on exit */
163 if (!cuesheet_is_enabled() && global_settings.cuesheet) 162 if (!cuesheet_is_enabled() && global_settings.cuesheet)
164 gui_syncsplash(HZ*2, "%s", ID2P(LANG_PLEASE_REBOOT)); 163 splash(HZ*2, ID2P(LANG_PLEASE_REBOOT));
165 break; 164 break;
166 } 165 }
167 return action; 166 return action;