Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-05 07:44:27 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-05 07:44:27 +0300
commit100852f221b8f1b83c978d29c0cd56f54d7ffab8 (patch)
treed6f194f509a92a56e21b693ec760435e44f6eb0d /Apps/AppTypeCollection.cs
parent01c8b9149f139648ed53fe175bbc955443c2ef01 (diff)
Fixes
Diffstat (limited to 'Apps/AppTypeCollection.cs')
-rw-r--r--Apps/AppTypeCollection.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Apps/AppTypeCollection.cs b/Apps/AppTypeCollection.cs
index a43ee78e..1ad25fab 100644
--- a/Apps/AppTypeCollection.cs
+++ b/Apps/AppTypeCollection.cs
@@ -27,7 +27,7 @@ namespace com.clusterrr.hakchi_gui
{
Class = typeof(NesGame),
Extensions = new string[] {".nes"},
- DefaultApps = new string[] {"/bin/clover-kachikachi-wr", "/bin/clover-kachikachi", "/bin/nes"},
+ DefaultApps = new string[] { "/bin/nes", "/bin/clover-kachikachi-wr", "/usr/bin/clover-kachikachi" },
Prefix = 'H',
DefaultCover = Resources.blank_nes
},
@@ -43,7 +43,7 @@ namespace com.clusterrr.hakchi_gui
{
Class = typeof(FdsGame),
Extensions = new string[] {".fds"},
- DefaultApps = new string[] {"/bin/clover-kachikachi-wr", "/bin/clover-kachikachi", "/bin/nes"},
+ DefaultApps = new string[] { "/bin/nes", "/bin/clover-kachikachi-wr", "/usr/bin/clover-kachikachi" },
Prefix = 'D',
DefaultCover = Resources.blank_fds
},
@@ -51,7 +51,7 @@ namespace com.clusterrr.hakchi_gui
{
Class = typeof(SnesGame),
Extensions = new string[] { ".sfc", ".smc", ".sfrom" },
- DefaultApps = new string[] {"/usr/bin/clover-canoe-shvc", "/bin/snes"},
+ DefaultApps = new string[] { "/bin/snes", "/usr/bin/clover-canoe-shvc", },
Prefix = 'U',
DefaultCover = Resources.blank_snes_us
},