diff --git a/ComputerSystems/Commodore64/App.config b/ComputerSystems/Commodore64/App.config
index a2881e1..ebe5140 100644
--- a/ComputerSystems/Commodore64/App.config
+++ b/ComputerSystems/Commodore64/App.config
@@ -1,27 +1,8 @@
-
-
-
-
-
-
- True
-
-
- False
-
-
- False
-
-
- False
-
-
-
\ No newline at end of file
diff --git a/ComputerSystems/Commodore64/FormC64Screen.Designer.cs b/ComputerSystems/Commodore64/FormC64Screen.Designer.cs
index e5899d1..52d7da4 100644
--- a/ComputerSystems/Commodore64/FormC64Screen.Designer.cs
+++ b/ComputerSystems/Commodore64/FormC64Screen.Designer.cs
@@ -58,10 +58,10 @@ private void InitializeComponent() {
this.lblVicGraphicsMode = new System.Windows.Forms.ToolStripStatusLabel();
this.lblVicScreenOn = new System.Windows.Forms.ToolStripStatusLabel();
this.separator5 = new System.Windows.Forms.ToolStripSeparator();
+ this.btnShowFullFrameVideo = new System.Windows.Forms.ToolStripButton();
this.btnUseCrtFilter = new System.Windows.Forms.ToolStripButton();
this.btnShowVideoFrameOutlines = new System.Windows.Forms.ToolStripButton();
this.btnShowScanLinePosition = new System.Windows.Forms.ToolStripButton();
- this.btnShowFullFrameVideo = new System.Windows.Forms.ToolStripButton();
((System.ComponentModel.ISupportInitialize)(this.pScreen)).BeginInit();
this.statusMain.SuspendLayout();
this.toolMain.SuspendLayout();
@@ -374,9 +374,21 @@ private void InitializeComponent() {
this.separator5.Name = "separator5";
this.separator5.Size = new System.Drawing.Size(6, 25);
//
+ // btnShowFullFrameVideo
+ //
+ this.btnShowFullFrameVideo.Checked = true;
+ this.btnShowFullFrameVideo.CheckOnClick = true;
+ this.btnShowFullFrameVideo.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.btnShowFullFrameVideo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+ this.btnShowFullFrameVideo.Image = ((System.Drawing.Image)(resources.GetObject("btnShowFullFrameVideo.Image")));
+ this.btnShowFullFrameVideo.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.btnShowFullFrameVideo.Name = "btnShowFullFrameVideo";
+ this.btnShowFullFrameVideo.Size = new System.Drawing.Size(98, 22);
+ this.btnShowFullFrameVideo.Text = "Show Full Frame";
+ //
// btnUseCrtFilter
//
- this.btnUseCrtFilter.Checked = global::Commodore64.Properties.Settings.Default.ApplyCrtFilter;
+ this.btnUseCrtFilter.Checked = true;
this.btnUseCrtFilter.CheckOnClick = true;
this.btnUseCrtFilter.CheckState = System.Windows.Forms.CheckState.Checked;
this.btnUseCrtFilter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@@ -388,8 +400,9 @@ private void InitializeComponent() {
//
// btnShowVideoFrameOutlines
//
- this.btnShowVideoFrameOutlines.Checked = global::Commodore64.Properties.Settings.Default.ShowVideoFrameOutlines;
+ this.btnShowVideoFrameOutlines.Checked = true;
this.btnShowVideoFrameOutlines.CheckOnClick = true;
+ this.btnShowVideoFrameOutlines.CheckState = System.Windows.Forms.CheckState.Checked;
this.btnShowVideoFrameOutlines.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnShowVideoFrameOutlines.Image = ((System.Drawing.Image)(resources.GetObject("btnShowVideoFrameOutlines.Image")));
this.btnShowVideoFrameOutlines.ImageTransparentColor = System.Drawing.Color.Magenta;
@@ -399,8 +412,9 @@ private void InitializeComponent() {
//
// btnShowScanLinePosition
//
- this.btnShowScanLinePosition.Checked = global::Commodore64.Properties.Settings.Default.ShowScanLinePosition;
+ this.btnShowScanLinePosition.Checked = true;
this.btnShowScanLinePosition.CheckOnClick = true;
+ this.btnShowScanLinePosition.CheckState = System.Windows.Forms.CheckState.Checked;
this.btnShowScanLinePosition.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnShowScanLinePosition.Image = ((System.Drawing.Image)(resources.GetObject("btnShowScanLinePosition.Image")));
this.btnShowScanLinePosition.ImageTransparentColor = System.Drawing.Color.Magenta;
@@ -408,17 +422,6 @@ private void InitializeComponent() {
this.btnShowScanLinePosition.Size = new System.Drawing.Size(101, 22);
this.btnShowScanLinePosition.Text = "Scanline Position";
//
- // btnShowFullFrameVideo
- //
- this.btnShowFullFrameVideo.Checked = global::Commodore64.Properties.Settings.Default.ShowFullFrameVideo;
- this.btnShowFullFrameVideo.CheckOnClick = true;
- this.btnShowFullFrameVideo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.btnShowFullFrameVideo.Image = ((System.Drawing.Image)(resources.GetObject("btnShowFullFrameVideo.Image")));
- this.btnShowFullFrameVideo.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.btnShowFullFrameVideo.Name = "btnShowFullFrameVideo";
- this.btnShowFullFrameVideo.Size = new System.Drawing.Size(98, 22);
- this.btnShowFullFrameVideo.Text = "Show Full Frame";
- //
// FormC64Screen
//
this.AllowDrop = true;
diff --git a/ComputerSystems/Commodore64/Properties/Settings.Designer.cs b/ComputerSystems/Commodore64/Properties/Settings.Designer.cs
index 8327b5a..212dd85 100644
--- a/ComputerSystems/Commodore64/Properties/Settings.Designer.cs
+++ b/ComputerSystems/Commodore64/Properties/Settings.Designer.cs
@@ -22,53 +22,5 @@ public static Settings Default {
return defaultInstance;
}
}
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("True")]
- public bool ApplyCrtFilter {
- get {
- return ((bool)(this["ApplyCrtFilter"]));
- }
- set {
- this["ApplyCrtFilter"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowVideoFrameOutlines {
- get {
- return ((bool)(this["ShowVideoFrameOutlines"]));
- }
- set {
- this["ShowVideoFrameOutlines"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowScanLinePosition {
- get {
- return ((bool)(this["ShowScanLinePosition"]));
- }
- set {
- this["ShowScanLinePosition"] = value;
- }
- }
-
- [global::System.Configuration.UserScopedSettingAttribute()]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Configuration.DefaultSettingValueAttribute("False")]
- public bool ShowFullFrameVideo {
- get {
- return ((bool)(this["ShowFullFrameVideo"]));
- }
- set {
- this["ShowFullFrameVideo"] = value;
- }
- }
}
}
diff --git a/ComputerSystems/Commodore64/Properties/Settings.settings b/ComputerSystems/Commodore64/Properties/Settings.settings
index 82f0d6c..8e615f2 100644
--- a/ComputerSystems/Commodore64/Properties/Settings.settings
+++ b/ComputerSystems/Commodore64/Properties/Settings.settings
@@ -1,18 +1,5 @@
-
+
-
-
- True
-
-
- False
-
-
- False
-
-
- False
-
-
+
\ No newline at end of file