From ad6c2d0faf7d864e9dd5660344a49928fbe99c97 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Mon, 21 Mar 2011 00:43:53 +0000 Subject: [PATCH] Cheats window - Fix bug --- BizHawk.MultiClient/tools/Cheats.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/Cheats.cs b/BizHawk.MultiClient/tools/Cheats.cs index 75b51485e4..9e06f88134 100644 --- a/BizHawk.MultiClient/tools/Cheats.cs +++ b/BizHawk.MultiClient/tools/Cheats.cs @@ -15,7 +15,6 @@ namespace BizHawk.MultiClient { //Implement Freeze functions in all memory domains //Restore Window Size should restore column order as well - //TODO: use currently selected memory domain! - line 71 //context menu - enable/disable highlight dependent items int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired @@ -68,7 +67,7 @@ namespace BizHawk.MultiClient AddressBox.Text = ""; ValueBox.Text = ""; PopulateMemoryDomainComboBox(); - //AddressBox.MaxLength = GetNumDigits(Global.Emulator.MainMemory.Size - 1); + AddressBox.MaxLength = GetNumDigits(Global.Emulator.MemoryDomains[0].Size - 1); } public void Restart()