From 599675178b72115b99dcbe81e73d7e3d3ef938f2 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Thu, 17 Mar 2011 03:59:03 +0000 Subject: [PATCH] Remove compare value from Cheat object, for now --- BizHawk.MultiClient/tools/Cheat.cs | 4 ---- BizHawk.MultiClient/tools/Cheats.Designer.cs | 10 +++++----- BizHawk.MultiClient/tools/Cheats.cs | 6 ++---- 3 files changed, 7 insertions(+), 13 deletions(-) diff --git a/BizHawk.MultiClient/tools/Cheat.cs b/BizHawk.MultiClient/tools/Cheat.cs index 1ee6a66c6f..c3a89262fe 100644 --- a/BizHawk.MultiClient/tools/Cheat.cs +++ b/BizHawk.MultiClient/tools/Cheat.cs @@ -10,7 +10,6 @@ namespace BizHawk.MultiClient public string name { get; set; } public int address { get; set; } public int value { get; set; } - public int compare { get; set; } public bool enabled { get; set; } public Cheat() @@ -18,7 +17,6 @@ namespace BizHawk.MultiClient name = ""; address = 0; value = 0; - compare = 0; enabled = false; } @@ -27,7 +25,6 @@ namespace BizHawk.MultiClient name = c.name; address = c.address; value = c.value; - compare = c.compare; enabled = c.enabled; } @@ -36,7 +33,6 @@ namespace BizHawk.MultiClient name = cname; address = addr; value = val; - compare = comp; enabled = e; } diff --git a/BizHawk.MultiClient/tools/Cheats.Designer.cs b/BizHawk.MultiClient/tools/Cheats.Designer.cs index 2af482b15e..d0eb7d6fa2 100644 --- a/BizHawk.MultiClient/tools/Cheats.Designer.cs +++ b/BizHawk.MultiClient/tools/Cheats.Designer.cs @@ -33,7 +33,7 @@ this.CheatName = new System.Windows.Forms.ColumnHeader(); this.Address = new System.Windows.Forms.ColumnHeader(); this.Value = new System.Windows.Forms.ColumnHeader(); - this.Compare = new System.Windows.Forms.ColumnHeader(); + this.On = new System.Windows.Forms.ColumnHeader(); this.CheatsMenu = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -99,7 +99,7 @@ this.CheatName, this.Address, this.Value, - this.Compare}); + this.On}); this.CheatListView.FullRowSelect = true; this.CheatListView.GridLines = true; this.CheatListView.ItemCount = 0; @@ -125,9 +125,9 @@ // this.Value.Text = "Value"; // - // Compare + // On // - this.Compare.Text = "Compare"; + this.On.Text = "On"; // // CheatsMenu // @@ -605,7 +605,7 @@ private System.Windows.Forms.ColumnHeader CheatName; private System.Windows.Forms.ColumnHeader Address; private System.Windows.Forms.ColumnHeader Value; - private System.Windows.Forms.ColumnHeader Compare; + private System.Windows.Forms.ColumnHeader On; private System.Windows.Forms.ToolStripMenuItem duplicateToolStripMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator3; private System.Windows.Forms.ToolStrip toolStrip1; diff --git a/BizHawk.MultiClient/tools/Cheats.cs b/BizHawk.MultiClient/tools/Cheats.cs index 3c1e52db3e..edb395a794 100644 --- a/BizHawk.MultiClient/tools/Cheats.cs +++ b/BizHawk.MultiClient/tools/Cheats.cs @@ -75,11 +75,10 @@ namespace BizHawk.MultiClient { text = String.Format("{0:2X", cheatList[index].value); } - if (column == 3) //Compare + if (column == 3) //Enabled { - text = String.Format("{0:2X", cheatList[index].compare); + //TODO } - } private int GetNumDigits(Int32 i) @@ -573,7 +572,6 @@ namespace BizHawk.MultiClient c.name = cheatList[x].name; c.address = cheatList[x].address; c.value = cheatList[x].value; - c.compare = cheatList[x].compare; Changes(); cheatList.Add(c); DisplayCheatsList();