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-03-05 17:35:31 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-05 17:35:46 +0300
commit56a9336cab8361650aa3190e56e1f6620e9f79c7 (patch)
treef130a5ff61d44768a912326e209ce7c07d42b968 /MainForm.cs
parent89090080ab665b3f0ad44b1aa0915f35d2a477c1 (diff)
First steps to clovershell transfer
Diffstat (limited to 'MainForm.cs')
-rw-r--r--MainForm.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MainForm.cs b/MainForm.cs
index 80e937f9..f41ce870 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -599,6 +599,7 @@ namespace com.clusterrr.hakchi_gui
workerForm.Task = WorkerForm.Tasks.FlashKernel;
workerForm.KernelDump = KernelDump;
workerForm.Mod = "mod_hakchi";
+ workerForm.hmodsInstall = new List<string>() { "clovercon", "fontfix", "clovershell" };
workerForm.Config = null;
workerForm.Games = null;
workerForm.HiddenGames = null;
@@ -681,8 +682,8 @@ namespace com.clusterrr.hakchi_gui
var newApps = addedApps.Distinct(new NesMiniApplication.NesMiniAppEqualityComparer());
var newCodes = from app in newApps select app.Code;
var oldAppsReplaced = from app in checkedListBoxGames.Items.Cast<object>().ToArray()
- where (app is NesMiniApplication) && newCodes.Contains((app as NesMiniApplication).Code)
- select app;
+ where (app is NesMiniApplication) && newCodes.Contains((app as NesMiniApplication).Code)
+ select app;
foreach (var replaced in oldAppsReplaced)
checkedListBoxGames.Items.Remove(replaced);
checkedListBoxGames.Items.AddRange(newApps.ToArray());