Ram Search - better formatting of preview message, update some todo lists

This commit is contained in:
andres.delikat 2011-08-18 02:41:42 +00:00
parent a8fb30e517
commit 3cd57a1335
2 changed files with 5 additions and 4 deletions

View File

@ -13,9 +13,6 @@ namespace BizHawk.MultiClient
{
public partial class Cheats : Form
{
//Implement Freeze functions in all memory domains
//context menu - enable/disable highlight dependent items
int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired
int defaultHeight;
int defaultNameWidth;

View File

@ -15,6 +15,8 @@ namespace BizHawk.MultiClient
//Sorting by Prev only does "Since prev frame", find a way to integrate the various prev options
//In DoUndo, prevList is set to searchList, instead how about a UndoPrev, so that undo restores both the current and previous values
//Redo button
//Go To Address (Ctrl+G) feature
//Ctrl+A = highlight all visible addresses
/// <summary>
/// A winform designed to search through ram values
@ -472,7 +474,9 @@ namespace BizHawk.MultiClient
private string MakeAddressString(int num)
{
if (num == 1)
return "1 address";
return " 1 address";
else if (num < 10)
return " " + num.ToString() + " addresses";
else
return num.ToString() + " addresses";
}