summaryrefslogtreecommitdiff
path: root/apps/gui/quickscreen.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-03-07 10:07:49 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2021-03-07 10:07:49 -0500
commit9712d375ce31d8394cc30b9121577a7646c1af12 (patch)
tree15496f9654ae0fbeecb50017d48b34f2f6463216 /apps/gui/quickscreen.c
parent0dce97372987a0b25446c33c7bfd616780d9d7c0 (diff)
downloadrockbox-9712d375ce31d8394cc30b9121577a7646c1af12.tar.gz
rockbox-9712d375ce31d8394cc30b9121577a7646c1af12.zip
Shortcuts.c -- Update
Fix returns from shortcuts -- should now run plugins Fix formatting of file names to remove path from browser shortcuts Change-Id: I46e337110d04b84bedcb0c2945d5dd29a1860847
Diffstat (limited to 'apps/gui/quickscreen.c')
-rw-r--r--apps/gui/quickscreen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/quickscreen.c b/apps/gui/quickscreen.c
index b5113df8f6..f1c95ffef2 100644
--- a/apps/gui/quickscreen.c
+++ b/apps/gui/quickscreen.c
@@ -398,7 +398,7 @@ static const struct settings_list *get_setting(int gs_value,
398 return defaultval; 398 return defaultval;
399} 399}
400 400
401bool quick_screen_quick(int button_enter) 401int quick_screen_quick(int button_enter)
402{ 402{
403 struct gui_quickscreen qs; 403 struct gui_quickscreen qs;
404 bool oldshuffle = global_settings.playlist_shuffle; 404 bool oldshuffle = global_settings.playlist_shuffle;
@@ -439,7 +439,7 @@ bool quick_screen_quick(int button_enter)
439 playlist_sort(NULL, true); 439 playlist_sort(NULL, true);
440 } 440 }
441 } 441 }
442 return usb; 442 return (usb ? 1:0);
443} 443}
444 444
445/* stuff to make the quickscreen configurable */ 445/* stuff to make the quickscreen configurable */