--- trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2012/06/03 21:11:45 271 +++ trunk/RomCheater/Docking/FloatingMemorySearcher.cs 2012/06/03 21:25:47 272 @@ -64,12 +64,12 @@ namespace RomCheater.Docking PATCH_RESULTS_LIST = 0x3001, UKNOWN_RESULTS_LIST = 0x3001 } - static int col_Found_Address = 0; - static int col_Found_Value = 1; - static int col_Found_Frozen = 2; - static int col_Added_Address = 0; - static int col_Added_Value = 1; - static int col_Added_Frozen = 2; + static int col_Found_Address = 1; + static int col_Found_Value = 2; + static int col_Found_Frozen = 3; + static int col_Added_Address = 1; + static int col_Added_Value = 2; + static int col_Added_Frozen = 3; List<ListViewItem> ResultItems = new List<ListViewItem>(); List<ListViewItem> AddedItems = new List<ListViewItem>(); private bool _PatchedValue_NeedsUpdate; |