diff --git a/console/fileio/file_browser.c b/console/fileio/file_browser.c index cf04ccac28..def92827b3 100644 --- a/console/fileio/file_browser.c +++ b/console/fileio/file_browser.c @@ -42,10 +42,6 @@ void filebrowser_set_root(filebrowser_t *filebrowser, const char *root_dir) strlcpy(filebrowser->root_dir, root_dir, sizeof(filebrowser->root_dir)); } -void filebrowser_set_current_path(filebrowser_t *filebrowser, const char *path) -{ -} - void filebrowser_free(filebrowser_t * filebrowser) { dir_list_free(filebrowser->current_dir.list); diff --git a/ps3/frontend/menu.c b/ps3/frontend/menu.c index f54bff2a15..13f6cfad81 100644 --- a/ps3/frontend/menu.c +++ b/ps3/frontend/menu.c @@ -319,7 +319,7 @@ static void browser_render(filebrowser_t * b) char fname_tmp[256]; fill_pathname_base(fname_tmp, b->current_dir.list->elems[i].data, sizeof(fname_tmp)); currentY = currentY + ySpacing; - cellDbgFontPuts(currentX, currentY, FONT_SIZE, i == current_index ? RED : WHITE, fname_tmp); + cellDbgFontPuts(currentX, currentY, FONT_SIZE, i == current_index ? RED : b->current_dir.list->elems[i].attr.b ? GREEN : WHITE, fname_tmp); gl_render_msg_post(gl); } gl_render_msg_post(gl);