summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2022-08-11 06:25:01 +0200
committerSolomon Peachy <pizza@shaftnet.org>2022-08-19 00:29:17 -0400
commitc1c0318c8dcb8ac0228ac6b93cc801bae65eacf0 (patch)
tree15ff493863441ad987dcc6b914e78df08e445cd9
parent5e757b4d6e6531ddd8f1f819525dbbacdb8e994f (diff)
downloadrockbox-c1c0318c8dcb8ac0228ac6b93cc801bae65eacf0.tar.gz
rockbox-c1c0318c8dcb8ac0228ac6b93cc801bae65eacf0.zip
Playlist Viewer: Fix unintentional fallthrough
Change-Id: Iead5635e0e7f20dc556f26f735fd47597c9169b6
-rw-r--r--apps/playlist_viewer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index fd6a01117f..2f23d87c2b 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -972,8 +972,8 @@ enum playlist_viewer_result playlist_viewer_ex(const char* filename)
972 quick_screen_quick(button); 972 quick_screen_quick(button);
973 update_playlist(true); 973 update_playlist(true);
974 update_lists(&playlist_lists); 974 update_lists(&playlist_lists);
975 break;
976 } 975 }
976 break;
977#endif 977#endif
978#ifdef HAVE_HOTKEY 978#ifdef HAVE_HOTKEY
979 case ACTION_TREE_HOTKEY: 979 case ACTION_TREE_HOTKEY: