diff options
author | Jorginho <jorginho@adinet.com.uy> | 2012-05-25 20:15:27 +0200 |
---|---|---|
committer | Jorginho <jorginho@adinet.com.uy> | 2012-05-25 20:15:27 +0200 |
commit | 1a4b2ba65d415277474f91444c1f1ad554bb4bb6 (patch) | |
tree | f9064d5470ec334a74bdf7ecc3163b3ff0467186 /social/bsnes/add-usr-share-fallback.patch | |
parent | 4ff8070ee26b0261a20e641c4be7efde593486e7 (diff) | |
download | abslibre-1a4b2ba65d415277474f91444c1f1ad554bb4bb6.tar.gz abslibre-1a4b2ba65d415277474f91444c1f1ad554bb4bb6.tar.bz2 abslibre-1a4b2ba65d415277474f91444c1f1ad554bb4bb6.zip |
deleting bsnes folder from social repo
Diffstat (limited to 'social/bsnes/add-usr-share-fallback.patch')
-rw-r--r-- | social/bsnes/add-usr-share-fallback.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/social/bsnes/add-usr-share-fallback.patch b/social/bsnes/add-usr-share-fallback.patch deleted file mode 100644 index 4d2b5cf3c..000000000 --- a/social/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<RadioItem&> 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<RadioItem&> group; - - settingsVideoShaderList = new RadioItem[files.size()]; |