From e34f519a15c787fe306d3e46d8d87e0ce414889d Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Tue, 7 Aug 2012 23:14:40 -0300 Subject: bsnes-090-2: updating version --- pcr/bsnes/add-usr-share-fallback.patch | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 pcr/bsnes/add-usr-share-fallback.patch (limited to 'pcr/bsnes/add-usr-share-fallback.patch') diff --git a/pcr/bsnes/add-usr-share-fallback.patch b/pcr/bsnes/add-usr-share-fallback.patch deleted file mode 100644 index 4d2b5cf3c..000000000 --- a/pcr/bsnes/add-usr-share-fallback.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- target-ui/general/main-window.cpp 2012-02-03 23:33:00.000000000 +0100 -+++ target-ui/general/main-window.cpp 2012-02-13 18:02:04.988109569 +0100 -@@ -331,6 +331,10 @@ - path = { application->userpath, "filters/" }; - files = directory::files(path, "*.filter"); - } -+ if(files.size() == 0) { -+ path = { "/usr/share/bsnes/", "filters/" }; -+ files = directory::files(path, "*.filter"); -+ } - array group; - - settingsVideoFilterList = new RadioItem[files.size()]; -@@ -362,6 +366,10 @@ - path = { application->userpath, "shaders/" }; - files = directory::files(path, { "*.", config->video.driver, ".shader" }); - } -+ if(files.size() == 0) { -+ path = { "/usr/share/bsnes/", "shaders/" }; -+ files = directory::files(path, { "*.", config->video.driver, ".shader" }); -+ } - array group; - - settingsVideoShaderList = new RadioItem[files.size()]; -- cgit v1.2.3