summaryrefslogtreecommitdiff
path: root/apps/shortcuts.c
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 /apps/shortcuts.c
parentf348d921b6abc7d164fa867939f55673bc6d102f (diff)
Shortcuts Menu -- remove debug statements
Change-Id: I4ad370088a6b1da188611ae335fcd7a7e3a57f90
Diffstat (limited to 'apps/shortcuts.c')
-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)
sc = get_shortcut(list.selection);
if (!sc)
continue;
- splashf(200, "%i", sc->type);
+
switch (sc->type)
{
case SHORTCUT_PLAYLISTMENU:
@@ -625,7 +625,6 @@ int do_shortcut_menu(void *ignored)
/* else fall through */
case SHORTCUT_BROWSER:
{
- splashf(200, "b %i %s", sc->type, sc->u.path);
if(open_plugin_add_path(ID2P(LANG_SHORTCUTS), sc->u.path, NULL) != 0)
{
done = GO_TO_PLUGIN;