summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts/shortcuts_view.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/shortcuts/shortcuts_view.c')
-rw-r--r--apps/plugins/shortcuts/shortcuts_view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/shortcuts/shortcuts_view.c b/apps/plugins/shortcuts/shortcuts_view.c
index f61177f37a..4ef1bbc816 100644
--- a/apps/plugins/shortcuts/shortcuts_view.c
+++ b/apps/plugins/shortcuts/shortcuts_view.c
@@ -166,10 +166,10 @@ bool goto_entry(char *file_or_dir)
166 char *what; 166 char *what;
167 if (is_dir) { 167 if (is_dir) {
168 what = "Directory"; 168 what = "Directory";
169 exists = dir_exists(file_or_dir); 169 exists = rb->dir_exists(file_or_dir);
170 } else { 170 } else {
171 what = "File"; 171 what = "File";
172 exists = file_exists(file_or_dir); 172 exists = rb->file_exists(file_or_dir);
173 } 173 }
174 174
175 if (!exists) { 175 if (!exists) {