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-01-19 17:33:58 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-01-19 17:33:58 +0300
commitf0832bcc5d04e8f2a1aa5781312db91dc45bbef1 (patch)
tree6e83ada42948d8a4814e450f18d19f4a0a550724 /ConfigIni.cs
parentbb1dacd1c264497ee4d1871e29c215c5374d1f62 (diff)
Code cleanup
Diffstat (limited to 'ConfigIni.cs')
-rw-r--r--ConfigIni.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/ConfigIni.cs b/ConfigIni.cs
index 6d42fef7..8bc60320 100644
--- a/ConfigIni.cs
+++ b/ConfigIni.cs
@@ -5,7 +5,6 @@ using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
-using static com.clusterrr.hakchi_gui.MainForm;
namespace com.clusterrr.hakchi_gui
{
@@ -20,7 +19,7 @@ namespace com.clusterrr.hakchi_gui
public static bool RemoveThumbnails = false;
public static bool EightBitPngCompression = true;
public static byte AntiArmetLevel = 0;
- public static NesButtons ResetCombination = NesButtons.Down | NesButtons.Select;
+ public static SelectButtonsForm.NesButtons ResetCombination = SelectButtonsForm.NesButtons.Down | SelectButtonsForm.NesButtons.Select;
public static Dictionary<string, string> Presets = new Dictionary<string, string>();
const string ConfigFile = "config.ini";
@@ -76,7 +75,7 @@ namespace com.clusterrr.hakchi_gui
EightBitPngCompression = !value.ToLower().Equals("false");
break;
case "resetcombination":
- ResetCombination = (NesButtons) byte.Parse(value);
+ ResetCombination = (SelectButtonsForm.NesButtons) byte.Parse(value);
break;
}
break;