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>2018-02-16 04:00:53 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2018-02-16 04:00:53 +0300
commit8d31e86bdd82aa5f46bd24b3a6b5665e1b2796d8 (patch)
tree38910c317ae50640e0ff055c20cfc3aeea5a45a5 /ConfigIni.cs
parent3a26887d4a225169121de7d2ec2c17684eb983ee (diff)
New config options, again. Also some fixes.
Diffstat (limited to 'ConfigIni.cs')
-rw-r--r--ConfigIni.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/ConfigIni.cs b/ConfigIni.cs
index 62f7bcbe..5b95fc8a 100644
--- a/ConfigIni.cs
+++ b/ConfigIni.cs
@@ -53,6 +53,7 @@ namespace com.clusterrr.hakchi_gui
public static bool UsbHostFamicom = false;
public static bool UsbHostSnes = false;
public static bool UsbHostSuperFamicom = false;
+ public static bool AlwaysWriteToUSB = false;
public static bool CustomFlashed
{
@@ -600,6 +601,9 @@ namespace com.clusterrr.hakchi_gui
case "usbhostsuperfamicom":
UsbHostSuperFamicom = !value.ToLower().Equals("false");
break;
+ case "alwayswritetousb":
+ AlwaysWriteToUSB = !value.ToLower().Equals("false");
+ break;
}
break;
case "presets":
@@ -658,6 +662,7 @@ namespace com.clusterrr.hakchi_gui
configLines.Add(string.Format("FtpServer={0}", FtpServer));
configLines.Add(string.Format("TelnetServer={0}", TelnetServer));
configLines.Add(string.Format("RunCount={0}", RunCount));
+ configLines.Add(string.Format("AlwaysWriteToUSB={0}", AlwaysWriteToUSB));
configLines.Add("");
configLines.Add("[Presets]");