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-07 20:58:14 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-07 20:58:14 +0300
commite27869a38e7f1d310c5615220839e0c7f1414b6a (patch)
treeaa2b1a34c5c354c7f4c465899ce9d57892548a47 /WorkerForm.cs
parentef067b9227b095b8a564ff09fe2c960363e9cac8 (diff)
Box art downloading
Diffstat (limited to 'WorkerForm.cs')
-rw-r--r--WorkerForm.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/WorkerForm.cs b/WorkerForm.cs
index 81056349..b2b1d44a 100644
--- a/WorkerForm.cs
+++ b/WorkerForm.cs
@@ -845,7 +845,7 @@ namespace com.clusterrr.hakchi_gui
case MainForm.ConsoleType.SNES:
case MainForm.ConsoleType.SuperFamicom:
originalSyncCode = $"mkdir -p \"{rootFsPath}{gamesPath}/{originalGames[originalCode]}/{originalCode}/\" && " +
- $"rsync -ac \"{gamesPath}/{originalCode}/\" \"{rootFsPath}{gamesPath}/{originalGames[originalCode]}/{originalCode}/\" &&" +
+ $"rsync -ac \"{gamesPath}/{originalCode}/\" \"{rootFsPath}{gamesPath}/{originalGames[originalCode]}/{originalCode}/\" && " +
$"sed -i -e 's/\\/usr\\/bin\\/clover-canoe-shvc/\\/bin\\/clover-canoe-shvc-wr/g' \"{rootFsPath}{gamesPath}/{originalGames[originalCode]}/{originalCode}/{originalCode}.desktop\"";
/*
// With compression but very slow
@@ -1259,9 +1259,10 @@ namespace com.clusterrr.hakchi_gui
{
var apps = new List<NesMiniApplication>();
addedApplications = null;
- NesGame.ParentForm = this;
- NesGame.NeedPatch = null;
+ NesMiniApplication.ParentForm = this;
+ NesMiniApplication.NeedPatch = null;
NesGame.IgnoreMapper = null;
+ SnesGame.NeedAutoDownloadCover = null;
int count = 0;
SetStatus(Resources.AddingGames);
foreach (var sourceFileName in files)