Remove compare value from Cheat object, for now
This commit is contained in:
parent
fed9c4e30e
commit
599675178b
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue