summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-03-09 09:48:10 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2021-03-09 09:48:10 -0500
commitf4b891e408c16b947d40be6d4cf498eb1c2b4ada (patch)
treebc5368b99589f5c0aaf220e0d3e17a9a6af81a8b
parentf348d921b6abc7d164fa867939f55673bc6d102f (diff)
downloadrockbox-f4b891e408c16b947d40be6d4cf498eb1c2b4ada.tar.gz
rockbox-f4b891e408c16b947d40be6d4cf498eb1c2b4ada.zip
Shortcuts Menu -- remove debug statements
Change-Id: I4ad370088a6b1da188611ae335fcd7a7e3a57f90
-rw-r--r--apps/shortcuts.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index 68a631dcf8..26d8ed4c07 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -602,7 +602,7 @@ int do_shortcut_menu(void *ignored)
602 sc = get_shortcut(list.selection); 602 sc = get_shortcut(list.selection);
603 if (!sc) 603 if (!sc)
604 continue; 604 continue;
605 splashf(200, "%i", sc->type); 605
606 switch (sc->type) 606 switch (sc->type)
607 { 607 {
608 case SHORTCUT_PLAYLISTMENU: 608 case SHORTCUT_PLAYLISTMENU:
@@ -625,7 +625,6 @@ int do_shortcut_menu(void *ignored)
625 /* else fall through */ 625 /* else fall through */
626 case SHORTCUT_BROWSER: 626 case SHORTCUT_BROWSER:
627 { 627 {
628 splashf(200, "b %i %s", sc->type, sc->u.path);
629 if(open_plugin_add_path(ID2P(LANG_SHORTCUTS), sc->u.path, NULL) != 0) 628 if(open_plugin_add_path(ID2P(LANG_SHORTCUTS), sc->u.path, NULL) != 0)
630 { 629 {
631 done = GO_TO_PLUGIN; 630 done = GO_TO_PLUGIN;