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-18 04:10:14 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-18 04:10:14 +0300
commit24d29a664710d19107b23a3430995daf648c54ff (patch)
tree4ae59aadb02beeafbe61b94780429c6fdbfaa35e /MainForm.cs
parent2cfa9b56d436a4a378571071dd16cf15208beacb (diff)
Changed uploading algorithm
Diffstat (limited to 'MainForm.cs')
-rw-r--r--MainForm.cs18
1 files changed, 12 insertions, 6 deletions
diff --git a/MainForm.cs b/MainForm.cs
index 528088b6..e88837a3 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -18,7 +18,7 @@ namespace com.clusterrr.hakchi_gui
const long maxTotalSize = 300;
public static string BaseDirectory;
public static string[] InternalMods = new string[] { "clovercon", "fontfix", "clovershell" };
- public static ClovershellConnection Clovershell = new ClovershellConnection() { AutoReconnect = true, Enabled = true, ShellEnabled = true };
+ public static ClovershellConnection Clovershell;
//readonly string UBootDump;
readonly string KernelDump;
@@ -93,6 +93,17 @@ namespace com.clusterrr.hakchi_gui
{
InitializeComponent();
ConfigIni.Load();
+ Clovershell = new ClovershellConnection() { AutoReconnect = true, Enabled = true };
+#if DEBUG
+ try
+ {
+ Clovershell.ShellEnabled = true;
+ }
+ catch (Exception ex)
+ {
+ Debug.WriteLine(ex.Message + ex.StackTrace);
+ }
+#endif
BaseDirectory = Path.GetDirectoryName(Application.ExecutablePath);
KernelDump = Path.Combine(Path.Combine(BaseDirectory, "dump"), "kernel.img");
LoadGames();
@@ -612,7 +623,6 @@ namespace com.clusterrr.hakchi_gui
workerForm.hmodsInstall = new List<string>(InternalMods);
workerForm.Config = null;
workerForm.Games = null;
- workerForm.HiddenGames = null;
workerForm.Start();
var result = workerForm.DialogResult == DialogResult.OK;
if (result)
@@ -632,7 +642,6 @@ namespace com.clusterrr.hakchi_gui
workerForm.Mod = "mod_hakchi";
workerForm.Config = ConfigIni.GetConfigDictionary();
workerForm.Games = new NesMenuCollection();
- var hiddenGames = new List<string>();
bool needOriginal = false;
foreach (var game in checkedListBoxGames.CheckedItems)
{
@@ -645,11 +654,8 @@ namespace com.clusterrr.hakchi_gui
{
if (needOriginal && checkedListBoxDefaultGames.CheckedIndices.Contains(i))
workerForm.Games.Add((NesDefaultGame)checkedListBoxDefaultGames.Items[i]);
- else
- hiddenGames.Add(((NesDefaultGame)checkedListBoxDefaultGames.Items[i]).Code);
}
- workerForm.HiddenGames = hiddenGames.ToArray();
workerForm.FoldersMode = ConfigIni.FoldersMode;
workerForm.MaxGamesPerFolder = ConfigIni.MaxGamesPerFolder;
workerForm.MainForm = this;