Shortcuts Menu -- remove debug statements

Change-Id: I4ad370088a6b1da188611ae335fcd7a7e3a57f90
This commit is contained in:
William Wilgus 2021-03-09 09:48:10 -05:00
parent f348d921b6
commit f4b891e408

View file

@ -602,7 +602,7 @@ int do_shortcut_menu(void *ignored)
sc = get_shortcut(list.selection); sc = get_shortcut(list.selection);
if (!sc) if (!sc)
continue; continue;
splashf(200, "%i", sc->type);
switch (sc->type) switch (sc->type)
{ {
case SHORTCUT_PLAYLISTMENU: case SHORTCUT_PLAYLISTMENU:
@ -625,7 +625,6 @@ int do_shortcut_menu(void *ignored)
/* else fall through */ /* else fall through */
case SHORTCUT_BROWSER: 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) if(open_plugin_add_path(ID2P(LANG_SHORTCUTS), sc->u.path, NULL) != 0)
{ {
done = GO_TO_PLUGIN; done = GO_TO_PLUGIN;