From 75f1cef3039fe6b8f8e875b9007a1e718b2349be Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Mon, 18 Jun 2012 23:29:43 +0200 Subject: [PATCH] (PS3) Directory / extension filtering works on PS3 now --- file_path.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/file_path.c b/file_path.c index 6219942a70..b5ecda7e64 100644 --- a/file_path.c +++ b/file_path.c @@ -270,10 +270,8 @@ char **dir_list_new(const char *dir, const char *ext, bool include_dirs) if (!include_dirs && is_dir) continue; -#ifndef __CELLOS_LV2__ if (!is_dir && ext_list && !string_list_find_elem(ext_list, file_ext)) continue; -#endif char file_path[PATH_MAX]; snprintf(file_path, sizeof(file_path), "%s/%s", dir, name);