Ram search - on showing the number of addresses, use commas
This commit is contained in:
parent
e0a97160bc
commit
7f86f58605
|
@ -205,7 +205,7 @@ namespace BizHawk.MultiClient
|
|||
str = " address";
|
||||
else
|
||||
str = " addresses";
|
||||
TotalSearchLabel.Text = x.ToString() + str;
|
||||
TotalSearchLabel.Text = String.Format("{0:n0}", x) + str;
|
||||
}
|
||||
|
||||
private void OpenSearchFile()
|
||||
|
|
Loading…
Reference in New Issue